Fix sound regression in FF, caused by last commit

svn-id: r21400
This commit is contained in:
Travis Howell 2006-03-22 08:27:41 +00:00
parent 5a8a32e350
commit c0198b4464

View file

@ -2266,10 +2266,9 @@ void SimonEngine::loadZone(uint vga_res) {
vpe->vgaFile1 = read_vga_from_datfile_2(vga_res * 2, 1);
vpe->vgaFile2 = read_vga_from_datfile_2(vga_res * 2 + 1, 2);
vpe->sfxFile = NULL;
vpe->sfxFile = NULL;
if (getGameType() == GType_FF && getPlatform() == Common::kPlatformWindows)
read_vga_from_datfile_2(vga_res * 2, 3);
vpe->sfxFile = read_vga_from_datfile_2(vga_res * 2, 3);
}
byte *SimonEngine::setup_vga_destination(uint32 size) {