[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.28,1.29

James Brown ender at users.sourceforge.net
Wed May 29 05:31:03 CEST 2002


Update of /cvsroot/scummvm/scummvm/simon
In directory usw-pr-cvs1:/tmp/cvs-serv5913

Modified Files:
	simon.cpp 
Log Message:
Fix bug 558589. This shouldn't happen anyway, as 1641.VGA seems to be the video data for 'wearing' the beard... I suspect some people just have bad rips of the game.



Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- simon.cpp	14 May 2002 19:44:41 -0000	1.28
+++ simon.cpp	29 May 2002 12:30:22 -0000	1.29
@@ -7631,8 +7631,10 @@
 		sprintf(buf, "%.3d%d.VGA", vga_id>>1, (vga_id&1)+1);
 
 		in = fopen_maybe_lowercase(buf);
-		if (in==NULL)
-			error("read_vga_from_datfile_1: cannot open %s", buf);
+		if (in==NULL) {
+			warning("read_vga_from_datfile_1: cannot open %s", buf);
+			return;
+		}
 
 		fseek(in, 0, SEEK_END);
 		size = ftell(in);





More information about the Scummvm-git-logs mailing list