aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/EventRecorder.cpp4
-rw-r--r--common/EventRecorder.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp
index 4441070050..a43455af93 100644
--- a/common/EventRecorder.cpp
+++ b/common/EventRecorder.cpp
@@ -304,6 +304,10 @@ void EventRecorder::processMillis(uint32 &millis) {
g_system->unlockMutex(_timeMutex);
}
+bool EventRecorder::processDelayMillis(uint32 &msecs) {
+ return false;
+}
+
bool EventRecorder::notifyEvent(const Event &ev) {
if (_recordMode != kRecorderRecord)
return false;
diff --git a/common/EventRecorder.h b/common/EventRecorder.h
index 8377d9e8bd..bf8039e5a7 100644
--- a/common/EventRecorder.h
+++ b/common/EventRecorder.h
@@ -56,6 +56,9 @@ public:
/** TODO: Add documentation, this is only used by the backend */
void processMillis(uint32 &millis);
+ /** TODO: Add documentation, this is only used by the backend */
+ bool processDelayMillis(uint32 &msecs);
+
private:
bool notifyEvent(const Event &ev);
bool pollEvent(Event &ev);