aboutsummaryrefslogtreecommitdiff
path: root/common/timer.cpp
diff options
context:
space:
mode:
authorMax Horn2003-09-08 17:13:40 +0000
committerMax Horn2003-09-08 17:13:40 +0000
commit6455c819896d58782f9ec195e0b716a1df32c296 (patch)
treeba0d5a4c7fe2381177fe7d119f90e748204798da /common/timer.cpp
parent90ec1dc34ea403c0e23ff820d5ca20a7b9ca0140 (diff)
downloadscummvm-rg350-6455c819896d58782f9ec195e0b716a1df32c296.tar.gz
scummvm-rg350-6455c819896d58782f9ec195e0b716a1df32c296.tar.bz2
scummvm-rg350-6455c819896d58782f9ec195e0b716a1df32c296.zip
more plugin related work
svn-id: r10098
Diffstat (limited to 'common/timer.cpp')
-rw-r--r--common/timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timer.cpp b/common/timer.cpp
index 2de3170b19..8ce5b809b2 100644
--- a/common/timer.cpp
+++ b/common/timer.cpp
@@ -91,7 +91,7 @@ int Timer::handler(int t) {
_timerSlots[l].counter -= interval;
if (_timerSlots[l].counter <= 0) {
_timerSlots[l].counter += _timerSlots[l].interval;
- _timerSlots[l].procedure (_engine);
+ _timerSlots[l].procedure(_engine);
}
}
}