Add option to disable later games (Feeble Files, Puzzle Pack) in AGOS game engine, which require higher resolution.

svn-id: r43270
This commit is contained in:
Travis Howell 2009-08-11 14:42:44 +00:00
parent 7f667c5289
commit 1c15bcf87d
27 changed files with 224 additions and 139 deletions

View file

@ -23,6 +23,7 @@
*
*/
#include "common/file.h"
#include "common/savefile.h"
#include "common/system.h"
@ -72,6 +73,7 @@ int AGOSEngine::countSaveGames() {
return i;
}
#ifdef ENABLE_AGOS2
char *AGOSEngine_PuzzlePack::genSaveName(int slot) {
static char buf[20];
@ -88,6 +90,7 @@ char *AGOSEngine_Feeble::genSaveName(int slot) {
sprintf(buf, "feeble.%.3d", slot);
return buf;
}
#endif
char *AGOSEngine_Simon2::genSaveName(int slot) {
static char buf[20];