diff options
Diffstat (limited to 'backends/platform/null')
-rw-r--r-- | backends/platform/null/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp index ca4eda9158..26e4654dde 100644 --- a/backends/platform/null/null.cpp +++ b/backends/platform/null/null.cpp @@ -115,7 +115,7 @@ public: virtual Common::SaveFileManager *getSavefileManager(); virtual Audio::Mixer *getMixer(); - virtual void getTimeAndDate(struct tm &t) const; + virtual void getTimeAndDate(TimeDate &t) const; virtual Common::TimerManager *getTimerManager(); FilesystemFactory *getFilesystemFactory(); @@ -321,7 +321,7 @@ Common::TimerManager *OSystem_NULL::getTimerManager() { return _timer; } -void OSystem_NULL::getTimeAndDate(struct tm &t) const { +void OSystem_NULL::getTimeAndDate(TimeDate &t) const { } FilesystemFactory *OSystem_NULL::getFilesystemFactory() { |