[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.295,1.296

Max Horn fingolfin at users.sourceforge.net
Sat Sep 20 13:02:05 CEST 2003


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv6679

Modified Files:
	simon.cpp 
Log Message:
fixed AMD64 warning

Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.295
retrieving revision 1.296
diff -u -d -r1.295 -r1.296
--- simon.cpp	18 Sep 2003 18:23:53 -0000	1.295
+++ simon.cpp	20 Sep 2003 20:01:32 -0000	1.296
@@ -537,7 +537,7 @@
 }
 
 void SimonEngine::alignTableMem() {
-	if ((uint32)_tablesheap_ptr & 3) {
+	if ((unsigned long)_tablesheap_ptr & 3) {
 		_tablesheap_ptr += 2;
 		_tablesheap_curpos += 2;
 	}





More information about the Scummvm-git-logs mailing list