mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
BACKENDS: All backends use _timerManager now, adapt OSystem accordingly
This commit is contained in:
parent
4ebe2065b6
commit
f13e671759
@ -109,10 +109,6 @@ void OSystem::fatalError() {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
Common::TimerManager *OSystem::getTimerManager() {
|
||||
return _timerManager;
|
||||
}
|
||||
|
||||
Common::SaveFileManager *OSystem::getSavefileManager() {
|
||||
assert(_savefileManager);
|
||||
return _savefileManager;
|
||||
|
@ -890,7 +890,9 @@ public:
|
||||
* Return the timer manager singleton. For more information, refer
|
||||
* to the TimerManager documentation.
|
||||
*/
|
||||
virtual Common::TimerManager *getTimerManager();
|
||||
inline Common::TimerManager *getTimerManager() {
|
||||
return _timerManager;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the event manager singleton. For more information, refer
|
||||
|
Loading…
x
Reference in New Issue
Block a user