]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove some cases of local noref
authorMario <zacjardine@y7mail.com>
Sat, 24 Jan 2015 10:17:00 +0000 (21:17 +1100)
committerMario <zacjardine@y7mail.com>
Sat, 24 Jan 2015 10:17:00 +0000 (21:17 +1100)
qcsrc/client/hud.qc
qcsrc/client/hud_config.qc

index 58693cd7efcdbfa69d107bdd67dfad477c3449d3..492e65ba8f0b3050476baa59ae55ada11b672482 100644 (file)
@@ -2291,7 +2291,7 @@ void HUD_Score(void)
                draw_endBoldFont();
        } else { // teamgames
                float row, column, rows = 0, columns = 0;
-               local noref vector offset = '0 0 0';
+               vector offset = '0 0 0';
                vector score_pos, score_size; //for scores other than myteam
                if(autocvar_hud_panel_score_rankings)
                {
index e19e2378754b1d4052fd3ecdf9eb1195b2ca3cdf..791508e52155ac0ec93830cf0ce6b64f4ee2f049 100644 (file)
@@ -429,7 +429,7 @@ void HUD_Panel_SetPosSize(vector mySize)
        HUD_Panel_UpdatePosSize()
        vector resizeorigin;
        resizeorigin = panel_click_resizeorigin;
-       local noref vector myPos; // fteqcc sucks
+       vector myPos;
 
        // minimum panel size cap
        mySize_x = max(0.025 * vid_conwidth, mySize_x);