projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
832e3be
)
fix uninitialized vars
author
eihrul <eihrul@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 26 Jan 2010 22:31:14 +0000
(22:31 +0000)
committer
Rudolf Polzer <rpolzer@nb-04.(none)>
Wed, 27 Jan 2010 06:16:43 +0000
(07:16 +0100)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9865
d7cf8633
-e32d-0410-b094-
e92efae38249
::stable-branch::merge=
d5c72bdb8774989383256fce4a751efec055a7e3
ft2.c
patch
|
blob
|
history
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_circl
e;
+ qboolean need_gauss
= false, need_circle = fals
e;
int needed, x, y;
float gausstable[2*POSTPROCESS_MAXRADIUS+1];
if(!pp.buf || pp.blur != fnt->settings->blur || pp.shadowz != fnt->settings->shadowz)