From 6a68a2462db4543b6a97feb2c00eefe72f0f3980 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 24 Jan 2015 21:17:00 +1100 Subject: [PATCH] Remove some cases of local noref --- qcsrc/client/hud.qc | 2 +- qcsrc/client/hud_config.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 58693cd7e..492e65ba8 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -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) { diff --git a/qcsrc/client/hud_config.qc b/qcsrc/client/hud_config.qc index e19e23787..791508e52 100644 --- a/qcsrc/client/hud_config.qc +++ b/qcsrc/client/hud_config.qc @@ -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); -- 2.39.2