mirror of
https://github.com/glest/glest-source.git
synced 2025-08-12 03:14:00 +02:00
Renamed megaglest_runtime_error to game_runtime_error
This commit is contained in:
@@ -97,7 +97,7 @@ namespace Shared {
|
||||
FILE *f = fopen(profileLog.c_str(), "w");
|
||||
#endif
|
||||
if (f == NULL)
|
||||
throw megaglest_runtime_error("Can not open file: " + profileLog);
|
||||
throw game_runtime_error("Can not open file: " + profileLog);
|
||||
|
||||
fprintf(f, "Profiler Results\n\n");
|
||||
|
||||
@@ -127,7 +127,7 @@ namespace Shared {
|
||||
currSection->stop();
|
||||
currSection = currSection->getParent();
|
||||
} else {
|
||||
throw megaglest_runtime_error("Profile: Leaving section is not current section: " + name);
|
||||
throw game_runtime_error("Profile: Leaving section is not current section: " + name);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user