From 2af64392f80ea19c416da54e346f0f70400710c8 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 5 Jun 2011 19:33:29 +0200 Subject: [PATCH] fix uninitialized use of an int when filtering a patch into a tree - possible performance increase after this fix --- tools/quake3/q3map2/surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/quake3/q3map2/surface.c b/tools/quake3/q3map2/surface.c index ba400b0..b5dd724 100644 --- a/tools/quake3/q3map2/surface.c +++ b/tools/quake3/q3map2/surface.c @@ -2147,7 +2147,7 @@ subdivides a patch into an approximate curve and filters it into the tree static int FilterPatchIntoTree( mapDrawSurface_t *ds, tree_t *tree ) { - int x, y, refs; + int x, y, refs = 0; for(y = 0; y + 2 < ds->patchHeight; y += 2) for(x = 0; x + 2 < ds->patchWidth; x += 2) -- 2.39.2