From 559059193ccde780065f0958bf957d4e5f2833ed Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Sun, 31 May 2026 16:21:21 -0300 Subject: [PATCH 1/2] cl_dll: hud: timer: fix Draw --- cl_dll/hud/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_dll/hud/timer.cpp b/cl_dll/hud/timer.cpp index b15091e3..16ec1e4e 100644 --- a/cl_dll/hud/timer.cpp +++ b/cl_dll/hud/timer.cpp @@ -55,7 +55,7 @@ int CHudTimer::VidInit() int CHudTimer::Draw( float fTime ) { - if ( ( gHUD.m_iHideHUDDisplay & HIDEHUD_HEALTH ) ) + if ( ( gHUD.m_iHideHUDDisplay & HIDEHUD_TIMER ) ) return 1; if (!(gHUD.m_iWeaponBits & (1<<(WEAPON_SUIT)) )) From 4731744a46b4b807be6d0ea1cd86b1938be3ff4d Mon Sep 17 00:00:00 2001 From: GLoOoccK <155241167+GLoOoccK@users.noreply.github.com> Date: Sun, 31 May 2026 16:28:35 -0300 Subject: [PATCH 2/2] cl_dll: hud: timer: fix Draw --- cl_dll/hud/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_dll/hud/timer.cpp b/cl_dll/hud/timer.cpp index 16ec1e4e..c5d3959f 100644 --- a/cl_dll/hud/timer.cpp +++ b/cl_dll/hud/timer.cpp @@ -55,7 +55,7 @@ int CHudTimer::VidInit() int CHudTimer::Draw( float fTime ) { - if ( ( gHUD.m_iHideHUDDisplay & HIDEHUD_TIMER ) ) + if( gHUD.m_iHideHUDDisplay & ( HIDEHUD_TIMER | HIDEHUD_ALL ) ) return 1; if (!(gHUD.m_iWeaponBits & (1<<(WEAPON_SUIT)) ))