aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Milburn2011-08-06 18:14:28 +0200
committerAlyssa Milburn2011-08-06 18:14:28 +0200
commitdf3bc62a3a3e5e69c43301ffba1dab120c2e34c2 (patch)
tree9a2aef2ececdb135f12207eda2fb2946cf8ef2aa
parent72160f53aaa7d24a381d14976ab6b61bc4fbb744 (diff)
downloadscummvm-rg350-df3bc62a3a3e5e69c43301ffba1dab120c2e34c2.tar.gz
scummvm-rg350-df3bc62a3a3e5e69c43301ffba1dab120c2e34c2.tar.bz2
scummvm-rg350-df3bc62a3a3e5e69c43301ffba1dab120c2e34c2.zip
COMMON: Change param type of processDelayMillis to fix build.
-rw-r--r--common/EventRecorder.cpp2
-rw-r--r--common/EventRecorder.h2
2 files changed, 2 insertions, 2 deletions
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;
}
diff --git a/common/EventRecorder.h b/common/EventRecorder.h
index bf8039e5a7..6be5d937af 100644
--- a/common/EventRecorder.h
+++ b/common/EventRecorder.h
@@ -57,7 +57,7 @@ public:
void processMillis(uint32 &millis);
/** TODO: Add documentation, this is only used by the backend */
- bool processDelayMillis(uint32 &msecs);
+ bool processDelayMillis(uint &msecs);
private:
bool notifyEvent(const Event &ev);