r1479 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Nov 2 12:39:25 EST 2008


Author: ludwig
Date: 2008-11-02 12:39:25 -0500 (Sun, 02 Nov 2008)
New Revision: 1479

Modified:
   trunk/code/client/cl_console.c
Log:
move location of version string in console a bit
patch by 'devhc97' (#3758)

Modified: trunk/code/client/cl_console.c
===================================================================
--- trunk/code/client/cl_console.c	2008-11-02 17:32:25 UTC (rev 1478)
+++ trunk/code/client/cl_console.c	2008-11-02 17:39:25 UTC (rev 1479)
@@ -611,7 +611,7 @@
 	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 @@
 	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] );
 	}
 
 




More information about the quake3-commits mailing list