mirror of
https://github.com/glest/glest-source.git
synced 2025-08-16 21:33:59 +02:00
Renamed megaglest_runtime_error to game_runtime_error
This commit is contained in:
@@ -80,7 +80,7 @@ namespace Shared {
|
||||
}
|
||||
safeMutex.ReleaseLock();
|
||||
} catch (const std::exception &ex) {
|
||||
throw megaglest_runtime_error(ex.what());
|
||||
throw game_runtime_error(ex.what());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -91,7 +91,7 @@ namespace Shared {
|
||||
itemCache[cacheKey] = *value;
|
||||
safeMutex.ReleaseLock();
|
||||
} catch (const std::exception &ex) {
|
||||
throw megaglest_runtime_error(ex.what());
|
||||
throw game_runtime_error(ex.what());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user