From 6bb408da080035cf0710f4f71b3afe7d093faea1 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Tue, 13 Nov 2018 14:12:22 -0500 Subject: [PATCH] Remove misplaced tutorialmode = false due to debugging --- src/f_finale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/f_finale.c b/src/f_finale.c index 5663eb060..e8d5f4a05 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -2369,9 +2369,9 @@ void F_GetPromptPageByNamedTag(const char *tag, INT32 *promptnum, INT32 *pagenum strncpy(suffixedtag, tag, 33); suffixedtag[32] = 0; - tutorialmode = true; + if (tutorialmode) - suffixed = F_GetTextPromptTutorialTag(suffixedtag, 33); tutorialmode = false; + suffixed = F_GetTextPromptTutorialTag(suffixedtag, 33); for (*promptnum = 0 + tutorialpromptnum; *promptnum < MAX_PROMPTS; (*promptnum)++) {