]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix some stupid ft2.c warnings
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 12 Dec 2010 19:25:06 +0000 (19:25 +0000)
committerRudolf Polzer <divverent@alientrap.org>
Sun, 12 Dec 2010 19:38:27 +0000 (20:38 +0100)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10654 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=d14c7bb2783fe7ea0948d515980547499bd57600

ft2.c

diff --git a/ft2.c b/ft2.c
index 217029668d0ab82d2b189c6c97874d952fdf9f47..790f79989448d3afe650503a5dfb21a513f44ec8 100644 (file)
--- 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)