From 27b68feea28cb21b4d73ce0cb98b6ed1ada2f0b0 Mon Sep 17 00:00:00 2001 From: Andrei Drexler Date: Sat, 31 Aug 2024 00:16:02 +0200 Subject: [PATCH] Fix console version text offset when console is almost out of view --- Quake/console.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Quake/console.c b/Quake/console.c index a14e2294..289cc91f 100644 --- a/Quake/console.c +++ b/Quake/console.c @@ -2191,9 +2191,8 @@ void Con_DrawConsole (int lines, qboolean drawinput) Con_DrawInput (); //draw version number in bottom right - y += 8; for (x = 0; x < (int)strlen(ver); x++) - Draw_Character ((con_linewidth - strlen(ver) + x + 2)<<3, y, ver[x] /*+ 128*/); + Draw_Character ((con_linewidth - strlen(ver) + x + 2)<<3, vid.conheight - 8, ver[x] /*+ 128*/); // woods iw }