mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
renamed some Timer methods
svn-id: r10868
This commit is contained in:
+2
-2
@@ -104,7 +104,7 @@ int Timer::handler(int t) {
|
||||
return t;
|
||||
}
|
||||
|
||||
bool Timer::installProcedure(TimerProc procedure, int32 interval, void *refCon) {
|
||||
bool Timer::installTimerProc(TimerProc procedure, int32 interval, void *refCon) {
|
||||
assert(interval > 0);
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
@@ -122,7 +122,7 @@ bool Timer::installProcedure(TimerProc procedure, int32 interval, void *refCon)
|
||||
return false;
|
||||
}
|
||||
|
||||
void Timer::releaseProcedure(TimerProc procedure) {
|
||||
void Timer::removeTimerProc(TimerProc procedure) {
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
for (int l = 0; l < MAX_TIMERS; l++) {
|
||||
|
||||
Reference in New Issue
Block a user