- fixed issues with console on top of intermissions not appearing.

This commit is contained in:
Christoph Oelckers 2020-09-05 18:41:18 +02:00
parent 443ddf670b
commit f36ac1dc90
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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();