aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
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);
}