From: cloudwalk Date: Tue, 21 Jul 2020 19:19:23 +0000 (+0000) Subject: gl_draw: Silence a spammy print X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5620e075d60fd8a8ab5fa3c0e7a450e536de6d11;p=xonotic%2Fdarkplaces.git gl_draw: Silence a spammy print git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12860 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/gl_draw.c b/gl_draw.c index 37c8911d..fd4eef5d 100644 --- a/gl_draw.c +++ b/gl_draw.c @@ -365,7 +365,7 @@ void LoadFont(qboolean override, const char *name, dp_font_t *fnt, float scale, if(fnt->req_face != -1) { if(!Font_LoadFont(fnt->texpath, fnt)) - Con_Printf("Failed to load font-file for '%s', it will not support as many characters.\n", fnt->texpath); + Con_DPrintf("Failed to load font-file for '%s', it will not support as many characters.\n", fnt->texpath); } fnt->pic = Draw_CachePic_Flags(fnt->texpath, CACHEPICFLAG_QUIET | CACHEPICFLAG_NOCOMPRESSION | (r_nearest_conchars.integer ? CACHEPICFLAG_NEAREST : 0) | CACHEPICFLAG_FAILONMISSING);