[Scummvm-cvs-logs] scummvm master -> df3bc62a3a3e5e69c43301ffba1dab120c2e34c2

fuzzie fuzzie at fuzzie.org
Sat Aug 6 18:17:18 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
df3bc62a3a COMMON: Change param type of processDelayMillis to fix build.


Commit: df3bc62a3a3e5e69c43301ffba1dab120c2e34c2
    https://github.com/scummvm/scummvm/commit/df3bc62a3a3e5e69c43301ffba1dab120c2e34c2
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2011-08-06T09:14:28-07:00

Commit Message:
COMMON: Change param type of processDelayMillis to fix build.

Changed paths:
    common/EventRecorder.cpp
    common/EventRecorder.h



diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp
index a43455a..eda6a45 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 bf8039e..6be5d93 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);






More information about the Scummvm-git-logs mailing list