[Scummvm-cvs-logs] CVS: scummvm/simon vga.cpp,1.134,1.135

kirben kirben at users.sourceforge.net
Fri Oct 7 00:07:10 CEST 2005


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

Modified Files:
	vga.cpp 
Log Message:

Missed a few lines.


Index: vga.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/vga.cpp,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -d -r1.134 -r1.135
--- vga.cpp	7 Oct 2005 06:59:49 -0000	1.134
+++ vga.cpp	7 Oct 2005 07:06:21 -0000	1.135
@@ -655,7 +655,8 @@
 		}
 	}
 
-	if (_game & GF_SIMON2 && width >= 21) {
+	uint maxWidth = (_game == GAME_FEEBLEFILES) ? 641 : 21;
+	if (_game & GF_SIMON2 && width >= maxWidth) {
 		const byte *src;
 		byte *dst;
 		uint w;





More information about the Scummvm-git-logs mailing list