mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-05 13:20:56 +00:00
- fixed issues with console on top of intermissions not appearing.
This commit is contained in:
parent
443ddf670b
commit
f36ac1dc90
2 changed files with 2 additions and 2 deletions
|
@ -1236,7 +1236,7 @@ void C_DrawConsole ()
|
||||||
|
|
||||||
oldbottom = ConBottom;
|
oldbottom = ConBottom;
|
||||||
|
|
||||||
if (ConsoleState == c_up)
|
if (ConsoleState == c_up && gamestate != GS_INTRO && gamestate != GS_INTERMISSION)
|
||||||
{
|
{
|
||||||
NotifyStrings.Draw();
|
NotifyStrings.Draw();
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -358,7 +358,7 @@ void Display()
|
||||||
|
|
||||||
NetUpdate(); // send out any new accumulation
|
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
|
// Draw overlay elements
|
||||||
CT_Drawer();
|
CT_Drawer();
|
||||||
|
|
Loading…
Reference in a new issue