]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix problem with dynamic lights on lightmaps wider than 18 pixels (oops!)
authorlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 27 Jan 2002 08:33:58 +0000 (08:33 +0000)
committerlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 27 Jan 2002 08:33:58 +0000 (08:33 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1424 d7cf8633-e32d-0410-b094-e92efae38249

gl_rsurf.c

index fe610f4318dc6e70fd5c3392a60f73d57d06e4b1..2b777f24b2dc3662b6b5eeb51011e5e2542fb968 100644 (file)
@@ -60,7 +60,7 @@ static int dlightdivtable[32768];
 
 static int R_AddDynamicLights (msurface_t *surf)
 {
-       int         sdtable[18], lnum, td, maxdist, maxdist2, maxdist3, i, s, t, smax, tmax, smax3, red, green, blue, lit, dist2, impacts, impactt, subtract;
+       int         sdtable[256], lnum, td, maxdist, maxdist2, maxdist3, i, s, t, smax, tmax, smax3, red, green, blue, lit, dist2, impacts, impactt, subtract;
        unsigned int *bl;
        float       dist;
        vec3_t      impact, local;