Browse Source

engine: console: fix TF_NEAREST missing from quake fixed font

master
Alibek Omarov 5 months ago
parent
commit
a28d45fdb2
  1. 2
      engine/client/console.c

2
engine/client/console.c

@ -575,7 +575,7 @@ static void Con_LoadConsoleFont( int fontNumber, cl_font_t *font ) @@ -575,7 +575,7 @@ static void Con_LoadConsoleFont( int fontNumber, cl_font_t *font )
{
// quake fixed font as fallback
// keep source to print directly into conback image
if( !Con_LoadFixedWidthFont( "gfx/conchars", font, scale, kRenderTransTexture, TF_FONT|TF_KEEP_SOURCE ))
if( !Con_LoadFixedWidthFont( "gfx/conchars", font, scale, kRenderTransTexture, TF_FONT|TF_NEAREST|TF_KEEP_SOURCE ))
Con_DPrintf( S_ERROR "failed to load console font\n" );
}
}

Loading…
Cancel
Save