From baf65bc87227b353cd2aac4cb661b8b9fb0aa0cc Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 6 Aug 2011 11:25:51 +0100 Subject: RECORDER: Added stub for delayMillis() processing --- common/EventRecorder.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'common/EventRecorder.cpp') 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; -- cgit v1.2.3 From df3bc62a3a3e5e69c43301ffba1dab120c2e34c2 Mon Sep 17 00:00:00 2001 From: Alyssa Milburn Date: Sat, 6 Aug 2011 18:14:28 +0200 Subject: COMMON: Change param type of processDelayMillis to fix build. --- common/EventRecorder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/EventRecorder.cpp') diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp index a43455af93..eda6a45ab1 100644 --- a/common/EventRecorder.cpp +++ b/common/EventRecorder.cpp @@ -304,7 +304,7 @@ void EventRecorder::processMillis(uint32 &millis) { g_system->unlockMutex(_timeMutex); } -bool EventRecorder::processDelayMillis(uint32 &msecs) { +bool EventRecorder::processDelayMillis(uint &msecs) { return false; } -- cgit v1.2.3 From 23a0f5318c50cdf3dce19e4de0c98fb5ae1c2618 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 7 Aug 2011 11:39:54 +0200 Subject: JANITORIAL: Remove trailing empty lines. --- common/EventRecorder.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'common/EventRecorder.cpp') diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp index eda6a45ab1..201043f52e 100644 --- a/common/EventRecorder.cpp +++ b/common/EventRecorder.cpp @@ -364,4 +364,3 @@ bool EventRecorder::pollEvent(Event &ev) { } } // End of namespace Common - -- cgit v1.2.3