aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-03-22 08:27:41 +0000
committerTravis Howell2006-03-22 08:27:41 +0000
commitc0198b44647cb330489adf388b078b644354c0d5 (patch)
treee66aa1fab5e8e8dc2c12eec151227a73e581c9ea /engines
parent5a8a32e350763639d9256b8d90bc4facc3ea72be (diff)
downloadscummvm-rg350-c0198b44647cb330489adf388b078b644354c0d5.tar.gz
scummvm-rg350-c0198b44647cb330489adf388b078b644354c0d5.tar.bz2
scummvm-rg350-c0198b44647cb330489adf388b078b644354c0d5.zip
Fix sound regression in FF, caused by last commit
svn-id: r21400
Diffstat (limited to 'engines')
-rw-r--r--engines/simon/simon.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp
index f6a3025356..c47dbbea66 100644
--- a/engines/simon/simon.cpp
+++ b/engines/simon/simon.cpp
@@ -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) {