diff options
author | Max Horn | 2009-01-23 03:48:04 +0000 |
---|---|---|
committer | Max Horn | 2009-01-23 03:48:04 +0000 |
commit | a925b5e7b70493b797ce40a8338e6177c69b35ab (patch) | |
tree | baaa233fa2881b4d466be237762ab8ee3cfcacb9 /backends | |
parent | 8f16458e9ba830fe80f177cc2fc3bcf2af84ebef (diff) | |
download | scummvm-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.cpp | 2 |
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); } |