From 03ee9d763ad25f1062204a53e55016f296c55290 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 2 Oct 2011 18:41:20 +0200 Subject: [PATCH] fix an effectless statement - who put this there in the first place? TH of course... --- qcsrc/client/hud.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 043b5ea98..7b5ce7cd2 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -2483,7 +2483,8 @@ void HUD_Score_Rankings(vector pos, vector mySize, entity me, float team_count) const float highlight_alpha = 0.2; float i, me_printed, first_pl; string s; - i, first_pl = 0; + i = 0; + first_pl = 0; if (autocvar__hud_configure) { float players_per_team; -- 2.39.2