From ce8c99bf62838099142aa79f2935e64639aa5571 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 28 Sep 2004 20:19:37 +0000 Subject: Rename remaining OSystem methods to match our coding guidelines svn-id: r15332 --- common/timer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/timer.cpp') diff --git a/common/timer.cpp b/common/timer.cpp index f1e09a9ff0..d46d975dd3 100644 --- a/common/timer.cpp +++ b/common/timer.cpp @@ -43,7 +43,7 @@ Timer::Timer(OSystem *system) : _timerSlots[i].counter = 0; } - _thisTime = _system->get_msecs(); + _thisTime = _system->getMillis(); // Set the timer last, after everything has been initialised _system->setTimerCallback(&timer_handler, 10); @@ -79,7 +79,7 @@ int Timer::handler(int t) { uint32 interval, l; _lastTime = _thisTime; - _thisTime = _system->get_msecs(); + _thisTime = _system->getMillis(); interval = 1000 * (_thisTime - _lastTime); for (l = 0; l < MAX_TIMERS; l++) { -- cgit v1.2.3