[Scummvm-cvs-logs] SF.net SVN: scummvm: [21400] scummvm/trunk/engines/simon/simon.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Mar 22 00:28:06 CET 2006


Revision: 21400
Author:   kirben
Date:     2006-03-22 00:27:41 -0800 (Wed, 22 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21400&view=rev

Log Message:
-----------
Fix sound regression in FF, caused by last commit

Modified Paths:
--------------
    scummvm/trunk/engines/simon/simon.cpp
Modified: scummvm/trunk/engines/simon/simon.cpp
===================================================================
--- scummvm/trunk/engines/simon/simon.cpp	2006-03-22 06:21:17 UTC (rev 21399)
+++ scummvm/trunk/engines/simon/simon.cpp	2006-03-22 08:27:41 UTC (rev 21400)
@@ -2266,10 +2266,9 @@
 	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) {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list