mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
Merge pull request #11 from ScatterBox/main
This commit is contained in:
commit
c703cd1ceb
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue