Minor cleanup

svn-id: r24333
This commit is contained in:
Travis Howell 2006-10-15 05:59:22 +00:00
parent ed89778036
commit 8925e814a7
6 changed files with 28 additions and 31 deletions

View file

@ -133,10 +133,11 @@ char *AGOSEngine::genSaveName(int slot) {
}
void AGOSEngine::quickLoadOrSave() {
// 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)
// Quick load & save is only supported complete version of Simon the Sorcerer 1/2
if (getGameType() != GType_SIMON1 && getGameType() != GType_SIMON2 &&
!(getFeatures() & GF_DEMO)) {
return;
}
bool success;
char buf[50];