aboutsummaryrefslogtreecommitdiff
path: root/sky
diff options
context:
space:
mode:
authorMax Horn2003-10-17 16:39:32 +0000
committerMax Horn2003-10-17 16:39:32 +0000
commitad2db089404e99a2750cd059237dc2a8579e045f (patch)
tree1067985d297a609ab32a6b45aee6508f330905ae /sky
parent96a8d0ec1cb7410d3790c822f2f9d5ce363daeb2 (diff)
downloadscummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.tar.gz
scummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.tar.bz2
scummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.zip
renamed some Timer methods
svn-id: r10868
Diffstat (limited to 'sky')
-rw-r--r--sky/sky.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/sky.cpp b/sky/sky.cpp
index 8337556db5..2ba3848461 100644
--- a/sky/sky.cpp
+++ b/sky/sky.cpp
@@ -275,7 +275,7 @@ void SkyEngine::initialise(void) {
_skyMouse->useLogicInstance(_skyLogic);
_timer = Engine::_timer; // initialize timer *after* _skyScreen has been initialized.
- _timer->installProcedure(&timerHandler, 1000000 / 50, this); //call 50 times per second
+ _timer->installTimerProc(&timerHandler, 1000000 / 50, this); //call 50 times per second
_skyControl = new SkyControl(_skyScreen, _skyDisk, _skyMouse, _skyText, _skyMusic, _skyLogic, _skySound, _system, getSavePath());
_skyLogic->useControlInstance(_skyControl);