From d14c7bb2783fe7ea0948d515980547499bd57600 Mon Sep 17 00:00:00 2001 From: divverent Date: Sun, 12 Dec 2010 19:25:06 +0000 Subject: [PATCH] fix some stupid ft2.c warnings git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10654 d7cf8633-e32d-0410-b094-e92efae38249 --- ft2.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ft2.c b/ft2.c index 21702966..790f7998 100644 --- a/ft2.c +++ b/ft2.c @@ -387,9 +387,13 @@ qboolean Font_LoadFont(const char *name, dp_font_t *dpfnt) if (!Font_LoadFile(dpfnt->fallbacks[i], dpfnt->fallback_faces[i], &dpfnt->settings, fb)) { - Con_Printf("Failed to allocate font for fallback %i of font %s\n", i, name); + if(!FS_FileExists(va("%s.tga", dpfnt->fallbacks[i]))) + if(!FS_FileExists(va("%s.png", dpfnt->fallbacks[i]))) + if(!FS_FileExists(va("%s.jpg", dpfnt->fallbacks[i]))) + if(!FS_FileExists(va("%s.pcx", dpfnt->fallbacks[i]))) + Con_Printf("Failed to load font %s for fallback %i of font %s\n", dpfnt->fallbacks[i], i, name); Mem_Free(fb); - break; + continue; } count = 0; for (s = 0; s < MAX_FONT_SIZES && dpfnt->req_sizes[s] >= 0; ++s) -- 2.39.2