aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_console.c
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-11-02 17:39:25 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-11-02 17:39:25 +0000
commit6a7a9814cbfa32d011eead273fe1562a97ea9451 (patch)
tree48f9131d7ec591e599e9e31fd1b8eca6d4ec19e2 /code/client/cl_console.c
parent2f641b0ec0f603497b372c992ddafeb435b2c499 (diff)
downloadioquake3-aero-6a7a9814cbfa32d011eead273fe1562a97ea9451.tar.gz
ioquake3-aero-6a7a9814cbfa32d011eead273fe1562a97ea9451.zip
move location of version string in console a bit
patch by 'devhc97' (#3758) git-svn-id: svn://svn.icculus.org/quake3/trunk@1479 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_console.c')
-rw-r--r--code/client/cl_console.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/code/client/cl_console.c b/code/client/cl_console.c
index 80e4e43..da575a3 100644
--- a/code/client/cl_console.c
+++ b/code/client/cl_console.c
@@ -611,7 +611,7 @@ void Con_DrawSolidConsole( float frac ) {
SCR_AdjustFrom640( &con.xadjust, NULL, NULL, NULL );
// draw the background
- y = frac * SCREEN_HEIGHT - 2;
+ y = frac * SCREEN_HEIGHT;
if ( y < 1 ) {
y = 0;
}
@@ -633,10 +633,8 @@ void Con_DrawSolidConsole( float frac ) {
i = strlen( Q3_VERSION );
for (x=0 ; x<i ; x++) {
-
- SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x ) * SMALLCHAR_WIDTH,
- (lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), Q3_VERSION[x] );
-
+ SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x + 1 ) * SMALLCHAR_WIDTH,
+ lines - SMALLCHAR_HEIGHT, Q3_VERSION[x] );
}