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 --- sword2/console.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sword2/console.cpp') diff --git a/sword2/console.cpp b/sword2/console.cpp index 990807712c..efedb92490 100644 --- a/sword2/console.cpp +++ b/sword2/console.cpp @@ -368,9 +368,9 @@ bool Debugger::Cmd_SaveRest(int argc, const char **argv) { bool Debugger::Cmd_TimeOn(int argc, const char **argv) { if (argc == 2) - _startTime = _vm->_system->get_msecs() - atoi(argv[1]) * 1000; + _startTime = _vm->_system->getMillis() - atoi(argv[1]) * 1000; else if (_startTime == 0) - _startTime = _vm->_system->get_msecs(); + _startTime = _vm->_system->getMillis(); _displayTime = true; DebugPrintf("Timer display on\n"); return true; -- cgit v1.2.3