From 9a8fee440e7c97d4ec3149cb23e92ff761b071a8 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sat, 25 Dec 2010 19:01:13 +0100 Subject: [PATCH] Fix stupid typo... These inverted checks were causing physics panel to completely disappear in hud_config mode, if panel is disabled --- qcsrc/client/hud.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 8b58efaf7..2e99f1a40 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4146,9 +4146,9 @@ float acc_prevtime, acc_avg, top_speed, top_speed_time; void HUD_Physics(void) { - if(!autocvar_hud_panel_physics) + if(!autocvar__hud_configure) { - if(!autocvar__hud_configure) return; + if(!autocvar_hud_panel_physics) return; if(spectatee_status <= 0 && autocvar_hud_panel_physics < 2) return; } else -- 2.39.2