From: Rudolf Polzer Date: Sun, 2 Oct 2011 16:41:20 +0000 (+0200) Subject: fix an effectless statement - who put this there in the first place? TH of course... X-Git-Tag: xonotic-v0.6.0~74^2~275^2~7 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=03ee9d763ad25f1062204a53e55016f296c55290;p=xonotic%2Fxonotic-data.pk3dir.git fix an effectless statement - who put this there in the first place? TH of course... --- 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;