[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.94,2.95 scumm.h,1.183,1.184

Max Horn fingolfin at users.sourceforge.net
Mon May 12 14:54:11 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv27012

Modified Files:
	gfx.cpp scumm.h 
Log Message:
cleanup (fixes another VC warning, too ;-)

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.94
retrieving revision 2.95
diff -u -d -r2.94 -r2.95
--- gfx.cpp	12 May 2003 21:35:56 -0000	2.94
+++ gfx.cpp	12 May 2003 21:53:36 -0000	2.95
@@ -809,7 +809,7 @@
 	return true;
 }
 
-byte Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem) {
+bool Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem) {
 	int w, h, i;
 
 	l >>= 3;

Index: scumm.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.h,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -d -r1.183 -r1.184
--- scumm.h	12 May 2003 21:35:56 -0000	1.183
+++ scumm.h	12 May 2003 21:53:36 -0000	1.184
@@ -846,7 +846,7 @@
 	VirtScreen *findVirtScreen(int y);
 	void setVirtscreenDirty(VirtScreen *vs, int left, int top, int right, int bottom);
 
-	byte isMaskActiveAt(int l, int t, int r, int b, byte *mem);
+	bool isMaskActiveAt(int l, int t, int r, int b, byte *mem);
 
 	void drawFlashlight();
 	





More information about the Scummvm-git-logs mailing list