From a01525d77c23a74f228b0455c6c23582422dd78d Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 9 Sep 2024 23:20:37 +0200 Subject: [PATCH] fixed new, 3-state setup option to allow skipping levels (yes/no/ask) This fixes commit a3ac3523. --- src/libgame/setup.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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; -- 2.34.1