From b6cb342e093ba7a58913f5657522f29c6c274474 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 23 Feb 2007 12:53:07 +0000 Subject: [PATCH] remove ; that was causing crashes/breakage git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6910 d7cf8633-e32d-0410-b094-e92efae38249 --- gl_rsurf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gl_rsurf.c b/gl_rsurf.c index 8e9afe8d..5b9cff9f 100644 --- a/gl_rsurf.c +++ b/gl_rsurf.c @@ -955,7 +955,7 @@ void R_Q1BSP_DrawLight(entity_render_t *ent, int numsurfaces, const int *surface surface = batchsurfacelist[k]; tex = surface->texture; rsurface_texture = tex->currentframe; - for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++); + for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++) r_refdef.stats.lights_lighttriangles += batchsurfacelist[l]->num_triangles; if (rsurface_texture->currentmaterialflags & (MATERIALFLAG_WALL | MATERIALFLAG_WATER)) { -- 2.39.2