aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2009-01-23 03:48:04 +0000
committerMax Horn2009-01-23 03:48:04 +0000
commita925b5e7b70493b797ce40a8338e6177c69b35ab (patch)
treebaaa233fa2881b4d466be237762ab8ee3cfcacb9 /backends
parent8f16458e9ba830fe80f177cc2fc3bcf2af84ebef (diff)
downloadscummvm-rg350-a925b5e7b70493b797ce40a8338e6177c69b35ab.tar.gz
scummvm-rg350-a925b5e7b70493b797ce40a8338e6177c69b35ab.tar.bz2
scummvm-rg350-a925b5e7b70493b797ce40a8338e6177c69b35ab.zip
Oops
svn-id: r36015
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/ds/arm9/source/osystem_ds.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ds/arm9/source/osystem_ds.cpp b/backends/platform/ds/arm9/source/osystem_ds.cpp
index 38aa57948c..992124dd73 100644
--- a/backends/platform/ds/arm9/source/osystem_ds.cpp
+++ b/backends/platform/ds/arm9/source/osystem_ds.cpp
@@ -554,7 +554,7 @@ void OSystem_DS::getTimeAndDate(struct tm &t) const {
#if 0
curTime = time(0);
#else
- curTime = 0xABCD1234 + getMillis() / 1000;
+ curTime = 0xABCD1234 + DS::getMillis() / 1000;
#endif
t = *localtime(&curTime);
}