diff --git a/source/gl_hud.c b/source/gl_hud.c index 488c752..2766d07 100644 --- a/source/gl_hud.c +++ b/source/gl_hud.c @@ -1322,7 +1322,7 @@ void HUD_Weapon (void) void HUD_Draw (void) { - if (key_dest == key_menu_pause || paused_hack == true) { + if (key_dest == key_menu_pause || paused_hack == true || m_state == m_exit) { return; } diff --git a/source/gl_screen.c b/source/gl_screen.c index a4470f5..2d0c054 100644 --- a/source/gl_screen.c +++ b/source/gl_screen.c @@ -1446,7 +1446,7 @@ Draw_Crosshair extern qboolean paused_hack; void SCR_DrawCrosshair (void) { - if (cl.stats[STAT_HEALTH] < 20 || paused_hack == true) { + if (cl.stats[STAT_HEALTH] < 20 || paused_hack == true || m_state == m_exit) { return; } #ifdef VITA