aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorMax Horn2008-05-15 11:36:56 +0000
committerMax Horn2008-05-15 11:36:56 +0000
commit6206fb2a188b28db426cb85653e8c6bf00d1f1d3 (patch)
treee50d359b95e38b424a44537733bf114d3d967415 /common/system.h
parent732d440d19a34f3f46c07487f5d724459375e640 (diff)
downloadscummvm-rg350-6206fb2a188b28db426cb85653e8c6bf00d1f1d3.tar.gz
scummvm-rg350-6206fb2a188b28db426cb85653e8c6bf00d1f1d3.tar.bz2
scummvm-rg350-6206fb2a188b28db426cb85653e8c6bf00d1f1d3.zip
Removed the default OSystem::getTimeAndDate() implementation
svn-id: r32138
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/common/system.h b/common/system.h
index 7989cabfbd..d2844401b0 100644
--- a/common/system.h
+++ b/common/system.h
@@ -727,8 +727,12 @@ public:
/** Delay/sleep for the specified amount of milliseconds. */
virtual void delayMillis(uint msecs) = 0;
- /** Get the current time and date. Correspond to time()+localtime(). */
- virtual void getTimeAndDate(struct tm &t) const;
+ /**
+ * Get the current time and date, in the local timezone.
+ * Corresponds on many systems to the combination of time()
+ * and localtime().
+ */
+ virtual void getTimeAndDate(struct tm &t) const = 0;
/**
* Return the timer manager singleton. For more information, refer