From a28d45fdb2e254edb83ebcffb4864057f240c59a Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 29 Jan 2024 05:41:52 +0300 Subject: [PATCH] engine: console: fix TF_NEAREST missing from quake fixed font --- engine/client/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/console.c b/engine/client/console.c index 02a87945..41cbe06e 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -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" ); } }