]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix uninitialized vars
authoreihrul <eihrul@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 26 Jan 2010 22:31:14 +0000 (22:31 +0000)
committereihrul <eihrul@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 26 Jan 2010 22:31:14 +0000 (22:31 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9865 d7cf8633-e32d-0410-b094-e92efae38249

ft2.c

diff --git a/ft2.c b/ft2.c
index ca21fa4b17ec6664cd18d6280d4617a5b09f87df..1c5f0a06f5ece0437851a965ecc55d843c825236 100644 (file)
--- 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)