From: Holger Schemel Date: Mon, 9 Sep 2024 21:20:37 +0000 (+0200) Subject: fixed new, 3-state setup option to allow skipping levels (yes/no/ask) X-Git-Tag: 4.4.0.0-test-4~270 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=a01525d77c23a74f228b0455c6c23582422dd78d;p=rocksndiamonds.git fixed new, 3-state setup option to allow skipping levels (yes/no/ask) This fixes commit a3ac3523. --- diff --git a/src/libgame/setup.c b/src/libgame/setup.c index f10fb0e9..42fd3380 100644 --- a/src/libgame/setup.c +++ b/src/libgame/setup.c @@ -2875,11 +2875,10 @@ SetupFileHash *loadSetupFileHash(char *filename) #define LEVELINFO_TOKEN_HANDICAP 31 #define LEVELINFO_TOKEN_TIME_LIMIT 32 #define LEVELINFO_TOKEN_SKIP_LEVELS 33 -#define LEVELINFO_TOKEN_ALLOW_SKIPPING_LEVELS 34 -#define LEVELINFO_TOKEN_USE_EMC_TILES 35 -#define LEVELINFO_TOKEN_INFO_SCREENS_FROM_MAIN 36 +#define LEVELINFO_TOKEN_USE_EMC_TILES 34 +#define LEVELINFO_TOKEN_INFO_SCREENS_FROM_MAIN 35 -#define NUM_LEVELINFO_TOKENS 37 +#define NUM_LEVELINFO_TOKENS 36 static LevelDirTree ldi;