mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 16:03:24 +00:00
Removed unused return value & param from DefaultTimerManager::handler()
svn-id: r24447
This commit is contained in:
parent
f4d8920f2b
commit
e767681dcf
@ -47,7 +47,7 @@ DefaultTimerManager::~DefaultTimerManager() {
|
||||
}
|
||||
}
|
||||
|
||||
int DefaultTimerManager::handler(int t) {
|
||||
void DefaultTimerManager::handler() {
|
||||
Common::StackLock lock(_mutex);
|
||||
uint32 interval, l;
|
||||
|
||||
@ -67,8 +67,6 @@ int DefaultTimerManager::handler(int t) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return t;
|
||||
}
|
||||
|
||||
bool DefaultTimerManager::installTimerProc(TimerProc procedure, int32 interval, void *refCon) {
|
||||
|
@ -51,7 +51,7 @@ public:
|
||||
void removeTimerProc(TimerProc proc);
|
||||
|
||||
// Timer callback, to be invoked at regular time intervals by the backend.
|
||||
int handler(int t);
|
||||
void handler();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user