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 authored and timbergeron committed Sep 19, 2024
1 parent 75018fc commit 27b68fe
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 @@ -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
}


Expand Down

0 comments on commit 27b68fe

Please sign in to comment.