From: Rudolf Polzer <divverent@alientrap.org>
Date: Sat, 30 Oct 2010 16:10:23 +0000 (+0200)
Subject: local variables ALSO work better when declared
X-Git-Tag: xonotic-v0.5.0~160
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=62fdec79ee1cb5523e1275b712381c571430507b;p=xonotic%2Fnetradiant.git

local variables ALSO work better when declared
---

diff --git a/tools/quake3/q3map2/light_ydnar.c b/tools/quake3/q3map2/light_ydnar.c
index 8d869dfb..a575093c 100644
--- a/tools/quake3/q3map2/light_ydnar.c
+++ b/tools/quake3/q3map2/light_ydnar.c
@@ -4013,7 +4013,7 @@ void SetupFloodLight( void )
 	int		i, j;
 	float	angle, elevation, angleStep, elevationStep;
 	const char	*value;
-	double v1,v2,v3,v4,v5;
+	double v1,v2,v3,v4,v5,v6;
 
 	/* note it */
 	Sys_FPrintf( SYS_VRB, "--- SetupFloodLight ---\n" );