From d5c72bdb8774989383256fce4a751efec055a7e3 Mon Sep 17 00:00:00 2001 From: eihrul Date: Tue, 26 Jan 2010 22:31:14 +0000 Subject: [PATCH] fix uninitialized vars git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9865 d7cf8633-e32d-0410-b094-e92efae38249 --- ft2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft2.c b/ft2.c index ca21fa4b..1c5f0a06 100644 --- a/ft2.c +++ b/ft2.c @@ -529,7 +529,7 @@ static qboolean Font_LoadFile(const char *name, int _face, ft2_settings_t *setti void Font_Postprocess_Update(ft2_font_t *fnt, int bpp, int w, int h) { - qboolean need_gauss, need_circle; + qboolean need_gauss = false, need_circle = false; int needed, x, y; float gausstable[2*POSTPROCESS_MAXRADIUS+1]; if(!pp.buf || pp.blur != fnt->settings->blur || pp.shadowz != fnt->settings->shadowz) -- 2.39.2