Skip to content

Commit

Permalink
Fix console version text offset
Browse files Browse the repository at this point in the history
when console is almost out of view
  • Loading branch information
andrei-drexler committed Aug 30, 2024
1 parent 01c41c3 commit 01bca6c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Quake/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -2364,9 +2364,8 @@ void Con_DrawConsole (int lines, qboolean drawinput)
Con_DrawInput ();

//draw version number in bottom right
y += 8;
text = CONSOLE_TITLE_STRING;
M_PrintWhite (vid.conwidth - (strlen (text) << 3), y, text);
M_PrintWhite (vid.conwidth - (strlen (text) << 3), vid.conheight - 8, text);
}


Expand Down

0 comments on commit 01bca6c

Please sign in to comment.