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:
parent
7f667c5289
commit
1c15bcf87d
27 changed files with 224 additions and 139 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue