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

kirben at users.sourceforge.net kirben at users.sourceforge.net
Thu Apr 13 02:46:02 CEST 2006


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

Log Message:
-----------
Disable quick load/save is FF, since original sometimes disabled load/save and it isn't reliable at the moment

Modified Paths:
--------------
    scummvm/trunk/engines/simon/saveload.cpp
Modified: scummvm/trunk/engines/simon/saveload.cpp
===================================================================
--- scummvm/trunk/engines/simon/saveload.cpp	2006-04-13 09:43:27 UTC (rev 21837)
+++ scummvm/trunk/engines/simon/saveload.cpp	2006-04-13 09:45:03 UTC (rev 21838)
@@ -99,9 +99,9 @@
 }
 
 void SimonEngine::quickLoadOrSave() {
-	// simon1demo subroutines are missing too many segments
-	// original demo didn't allow load or save either.
-	if (getGameId() == GID_SIMON1DEMO)
+	// The demo of Simon 1 (DOS Floppy) is missing too many segments
+	// and the Feeble Files doesn't always allow a load or save
+	if (getGameId() == GID_SIMON1DEMO || getGameType() == GType_FF)
 		return;
 
 	bool success;


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