mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
Remove sion 1 music warning
Change warning about missing vga file to error svn-id: r6323
This commit is contained in:
parent
9df455ce38
commit
303acc02bb
@ -321,8 +321,6 @@ void MidiPlayer::read_next_note(Track *t, NoteRec *nr)
|
||||
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);
|
||||
}
|
||||
|
@ -4218,10 +4218,8 @@ void SimonState::read_vga_from_datfile_1(uint vga_id)
|
||||
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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user