From: terencehill Date: Sat, 25 Dec 2010 18:01:13 +0000 (+0100) Subject: Fix stupid typo... X-Git-Tag: xonotic-v0.5.0~337 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9a8fee440e7c97d4ec3149cb23e92ff761b071a8;p=xonotic%2Fxonotic-data.pk3dir.git Fix stupid typo... These inverted checks were causing physics panel to completely disappear in hud_config mode, if panel is disabled --- 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