]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix an effectless statement - who put this there in the first place? TH of course...
authorRudolf Polzer <divverent@xonotic.org>
Sun, 2 Oct 2011 16:41:20 +0000 (18:41 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Sun, 2 Oct 2011 16:41:48 +0000 (18:41 +0200)
qcsrc/client/hud.qc

index 043b5ea98a957b60fd2b32ae7a343b81773102ed..7b5ce7cd22871e7c27af58e2308864ceb93cfef7 100644 (file)
@@ -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;