[Scummvm-cvs-logs] CVS: scummvm/simon midi.cpp,1.19,1.20 simon.cpp,1.128,1.129
Travis Howell
kirben at users.sourceforge.net
Thu Jan 2 20:25:09 CET 2003
Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv15499/simon
Modified Files:
midi.cpp simon.cpp
Log Message:
Remove sion 1 music warning
Change warning about missing vga file to error
Index: midi.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/midi.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- midi.cpp 21 Dec 2002 21:32:45 -0000 1.19
+++ midi.cpp 3 Jan 2003 04:24:16 -0000 1.20
@@ -321,8 +321,6 @@
if ((cmd_byte & 0xF0) != 0xE0)
break;
- warning ("Malformed pitch bend event skipped");
- warning ("If music sounds screwed up now, submit a bug report");
track_read_byte(t);
// track_read_byte(t);
}
Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -d -r1.128 -r1.129
--- simon.cpp 22 Dec 2002 09:04:27 -0000 1.128
+++ simon.cpp 3 Jan 2003 04:24:16 -0000 1.129
@@ -4218,10 +4218,8 @@
sprintf(buf, "%.3d%d.VGA", vga_id >> 1, (vga_id & 1) + 1);
in.open(buf, _gameDataPath);
- if (in.isOpen() == false) {
- warning("read_vga_from_datfile_1: cannot open %s", buf);
- return;
- }
+ if (in.isOpen() == false)
+ error("read_vga_from_datfile_1: cannot open %s", buf);
size = in.size();
More information about the Scummvm-git-logs
mailing list