From 3917e096ea9cd606f8a269fc60bda7acf16c256e Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 7 Nov 2024 14:11:53 +0300 Subject: [PATCH] engine: client: the most important change since forever, move downloading message a bit to the right so it looks better on 640x480 --- 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 f72b0779..f3217092 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -1718,7 +1718,7 @@ void Con_DrawDebug( void ) host.downloadcount, host.downloadfile, scr_download.value, Sys_DoubleTime() - timeStart ); Con_DrawStringLen( dlstring, &length, NULL ); - length = Q_max( length, 500 ); + length = Q_max( length, 300 ); x = refState.width - length * 1.05f; y = con.curFont->charHeight * 1.05f; Con_DrawString( x, y, dlstring, g_color_table[7] );