Moved and renamed terminal_error.* to fatal_error.*

This commit is contained in:
2016-03-21 21:10:12 +11:00
parent 5f0cf826d4
commit b89f6f2ece
7 changed files with 9 additions and 44 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ void ClientApplication::Init(int argc, char* argv[]) {
else {
std::ostringstream msg;
msg << "Failed to retrieve window info: " << SDL_GetError();
throw(msg.str());
throw(std::runtime_error(msg.str()));
}
//-------------------------