[Scummvm-cvs-logs] SF.net SVN: scummvm: [30711] scummvm/trunk/engines/parallaction/gfxbase.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Thu Jan 31 00:12:51 CET 2008


Revision: 30711
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30711&view=rev
Author:   thebluegr
Date:     2008-01-30 15:12:51 -0800 (Wed, 30 Jan 2008)

Log Message:
-----------
Changed the parameter types of setFlags() and clearFlags() to match their definitions

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/gfxbase.cpp

Modified: scummvm/trunk/engines/parallaction/gfxbase.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/gfxbase.cpp	2008-01-30 23:09:18 UTC (rev 30710)
+++ scummvm/trunk/engines/parallaction/gfxbase.cpp	2008-01-30 23:12:51 UTC (rev 30711)
@@ -69,11 +69,11 @@
 }
 
 
-void GfxObj::setFlags(uint flags) {
+void GfxObj::setFlags(uint32 flags) {
 	_flags |= flags;
 }
 
-void GfxObj::clearFlags(uint flags) {
+void GfxObj::clearFlags(uint32 flags) {
 	_flags &= ~flags;
 }
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list