[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.430,2.431

Eugene Sandulenko sev at users.sourceforge.net
Tue Apr 5 16:31:08 CEST 2005


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18163

Modified Files:
	gfx.cpp 
Log Message:
Fix parens. Spotted by Quietust.


Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.430
retrieving revision 2.431
diff -u -d -r2.430 -r2.431
--- gfx.cpp	5 Apr 2005 14:45:02 -0000	2.430
+++ gfx.cpp	5 Apr 2005 23:30:35 -0000	2.431
@@ -555,7 +555,7 @@
 		// NES can address negative number strips and that poses problem for
 		// our code. So instead adding zillions of fixes and potentially break
 		// other games we shift it right on rendering stage
-		if ((_features & GF_NES) && ((_NESStartStrip > 0) && (vs->number == kMainVirtScreen)) || (vs->number == kTextVirtScreen)) {
+		if ((_features & GF_NES) && (((_NESStartStrip > 0) && (vs->number == kMainVirtScreen)) || (vs->number == kTextVirtScreen))) {
 			x += 16;
 		}
 





More information about the Scummvm-git-logs mailing list