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

svn-id: r21838
This commit is contained in:
Travis Howell 2006-04-13 09:45:03 +00:00
parent 4ef316713e
commit a4c5a691cc

View file

@ -99,9 +99,9 @@ int SimonEngine::displaySaveGameList(int curpos, bool load, char *dst) {
}
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;