From f36ac1dc90eb2b261f715f90cdfd5434295a2a8d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 5 Sep 2020 18:41:18 +0200 Subject: [PATCH] - fixed issues with console on top of intermissions not appearing. --- source/core/console/c_console.cpp | 2 +- source/core/mainloop.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/console/c_console.cpp b/source/core/console/c_console.cpp index 432afe6b4..b6b2bbb87 100644 --- a/source/core/console/c_console.cpp +++ b/source/core/console/c_console.cpp @@ -1236,7 +1236,7 @@ void C_DrawConsole () oldbottom = ConBottom; - if (ConsoleState == c_up) + if (ConsoleState == c_up && gamestate != GS_INTRO && gamestate != GS_INTERMISSION) { NotifyStrings.Draw(); return; diff --git a/source/core/mainloop.cpp b/source/core/mainloop.cpp index 95ec1233e..693bb079f 100644 --- a/source/core/mainloop.cpp +++ b/source/core/mainloop.cpp @@ -358,7 +358,7 @@ void Display() NetUpdate(); // send out any new accumulation - if (gamestate != GS_INTRO && gamestate != GS_INTERMISSION) // do not draw overlays on the intros + if (gamestate != GS_INTRO) // do not draw overlays on the intros { // Draw overlay elements CT_Drawer();