Always allow con_hudlines when using devmode

This commit is contained in:
Zwip-Zwap Zapony 2023-08-14 19:55:26 +02:00
parent 3fbdaa61b7
commit 8077a1db8f

View file

@ -1885,9 +1885,9 @@ void CON_Drawer(void)
if (con_curlines > 0) if (con_curlines > 0)
CON_DrawConsole(); CON_DrawConsole();
else if (gamestate == GS_LEVEL else if (gamestate == GS_LEVEL || gamestate == GS_INTERMISSION || gamestate == GS_CREDITS
|| gamestate == GS_INTERMISSION || gamestate == GS_ENDING || gamestate == GS_CUTSCENE || gamestate == GS_EVALUATION || gamestate == GS_ENDING || gamestate == GS_CUTSCENE
|| gamestate == GS_CREDITS || gamestate == GS_EVALUATION || gamestate == GS_WAITINGPLAYERS) || gamestate == GS_WAITINGPLAYERS || cv_debug)
CON_DrawHudlines(); CON_DrawHudlines();
Unlock_state(); Unlock_state();