aboutsummaryrefslogtreecommitdiff
path: root/sword2/debug.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-11-11 10:30:25 +0000
committerTorbjörn Andersson2003-11-11 10:30:25 +0000
commit1f53624d88ac05bff0b4f408507eeca331cfdcd5 (patch)
tree682dd311f072b41437369e671a8d3d7a4faf5ab4 /sword2/debug.cpp
parent70bc5d15ec0af3dd6c009063816dac1e045067ef (diff)
downloadscummvm-rg350-1f53624d88ac05bff0b4f408507eeca331cfdcd5.tar.gz
scummvm-rg350-1f53624d88ac05bff0b4f408507eeca331cfdcd5.tar.bz2
scummvm-rg350-1f53624d88ac05bff0b4f408507eeca331cfdcd5.zip
Removed SVM_timeGetTime(). We may as well call get_msecs() directly.
svn-id: r11260
Diffstat (limited to 'sword2/debug.cpp')
-rw-r--r--sword2/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/debug.cpp b/sword2/debug.cpp
index d4950adc3c..fde2ce3b5b 100644
--- a/sword2/debug.cpp
+++ b/sword2/debug.cpp
@@ -120,7 +120,7 @@ void Debugger::buildDebugText(void) {
// debug info at top of screen - enabled/disabled as one complete unit
if (_displayTime) {
- int32 time = SVM_timeGetTime();
+ int32 time = g_system->get_msecs();
if ((time - _startTime) / 1000 >= 10000)
_startTime = time;