From f87c7f428d08d498985187e04c12ffd447af7251 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Mon, 8 May 2017 23:51:12 +0100 Subject: [PATCH] Compiling fixes --- src/f_finale.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/f_finale.c b/src/f_finale.c index 0f29fadb4..bcd431d7c 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -1429,6 +1429,8 @@ void F_StartTitleScreen(void) if (titlemap) { + mapthing_t *startpos; + gamestate_t prevwipegamestate = wipegamestate; titlemapinaction = true; gamemap = titlemap; @@ -1444,7 +1446,6 @@ void F_StartTitleScreen(void) //camera.subsector = NULL; // toast is filthy too // Set Default Position - mapthing_t *startpos; if (playerstarts[0]) startpos = playerstarts[0]; else if (deathmatchstarts[0]) @@ -1576,12 +1577,12 @@ void F_TitleScreenTicker(boolean run) if (gameaction != ga_nothing || gamestate != GS_TITLESCREEN) return; - thinker_t *th; - mobj_t *mo2; - mobj_t *cameraref = NULL; - // Execute the titlemap camera settings - if (titlemapinaction) { + if (titlemapinaction) + { + thinker_t *th; + mobj_t *mo2; + mobj_t *cameraref = NULL; for (th = thinkercap.next; th != &thinkercap; th = th->next) {