Make camera clear error message if there's no error

This commit is contained in:
ShadowNinja 2015-03-27 22:20:10 -04:00
parent 5659434d32
commit 3ef0b4e637
1 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,8 @@ bool Camera::successfullyCreated(std::string &error_message)
error_message = "Failed to create the wielded item scene manager";
} else if (!m_wieldnode) {
error_message = "Failed to create the wielded item scene node";
} else {
error_message.clear();
}
return error_message.empty();
}