aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2008-06-15 07:15:58 +0000
committerEugene Sandulenko2008-06-15 07:15:58 +0000
commitbc01acd18f6a0fae36497826d3a21baf3fec958d (patch)
tree779ef73ee40bcec23c7920d5ba8271a617050f54
parent9072c080ff1f1f241bac8474f113a6c3cc563ca5 (diff)
downloadscummvm-rg350-bc01acd18f6a0fae36497826d3a21baf3fec958d.tar.gz
scummvm-rg350-bc01acd18f6a0fae36497826d3a21baf3fec958d.tar.bz2
scummvm-rg350-bc01acd18f6a0fae36497826d3a21baf3fec958d.zip
Make null plugin compilable
svn-id: r32705
-rw-r--r--backends/platform/null/null.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp
index 194a7b6889..64d429a83e 100644
--- a/backends/platform/null/null.cpp
+++ b/backends/platform/null/null.cpp
@@ -102,6 +102,7 @@ public:
virtual Common::SaveFileManager *getSavefileManager();
virtual Audio::Mixer *getMixer();
+ virtual void getTimeAndDate(struct tm &t) const;
virtual Common::TimerManager *getTimerManager();
};
@@ -295,6 +296,9 @@ Common::TimerManager *OSystem_NULL::getTimerManager() {
return _timer;
}
+void OSystem_NULL::getTimeAndDate(struct tm &t) const {
+}
+
OSystem *OSystem_NULL_create() {
return new OSystem_NULL();
}