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

kirben at users.sourceforge.net kirben at users.sourceforge.net
Thu Apr 13 03:04:03 CEST 2006


Revision: 21840
Author:   kirben
Date:     2006-04-13 03:03:45 -0700 (Thu, 13 Apr 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21840&view=rev

Log Message:
-----------
vc36_setWindowImage is used for difference purpose in FF

Modified Paths:
--------------
    scummvm/trunk/engines/simon/vga.cpp
Modified: scummvm/trunk/engines/simon/vga.cpp
===================================================================
--- scummvm/trunk/engines/simon/vga.cpp	2006-04-13 09:53:51 UTC (rev 21839)
+++ scummvm/trunk/engines/simon/vga.cpp	2006-04-13 10:03:45 UTC (rev 21840)
@@ -1727,14 +1727,16 @@
 	uint vga_res = vcReadNextWord();
 	uint windowNum = vcReadNextWord();
 
-	if (getGameType() == GType_SIMON1) {
+	if (getGameType() == GType_FF) {
+		// TODO
+	} else if (getGameType() == GType_SIMON2) {
+		set_video_mode_internal(windowNum, vga_res);
+	} else {
 		if (windowNum == 16) {
 			_copyPartialMode = 2;
 		} else {
 			set_video_mode_internal(windowNum, vga_res);
 		}
-	} else {
-		set_video_mode_internal(windowNum, vga_res);
 	}
 }
 


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