renamed some Timer methods
svn-id: r10868
This commit is contained in:
parent
96a8d0ec1c
commit
ad2db08940
9 changed files with 21 additions and 21 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue