move location of version string in console a bit
patch by 'devhc97' (#3758)
This commit is contained in:
parent
5a3eda3485
commit
1e02c641bc
1 changed files with 3 additions and 5 deletions
|
@ -611,7 +611,7 @@ void Con_DrawSolidConsole( float frac ) {
|
||||||
SCR_AdjustFrom640( &con.xadjust, NULL, NULL, NULL );
|
SCR_AdjustFrom640( &con.xadjust, NULL, NULL, NULL );
|
||||||
|
|
||||||
// draw the background
|
// draw the background
|
||||||
y = frac * SCREEN_HEIGHT - 2;
|
y = frac * SCREEN_HEIGHT;
|
||||||
if ( y < 1 ) {
|
if ( y < 1 ) {
|
||||||
y = 0;
|
y = 0;
|
||||||
}
|
}
|
||||||
|
@ -633,10 +633,8 @@ void Con_DrawSolidConsole( float frac ) {
|
||||||
i = strlen( Q3_VERSION );
|
i = strlen( Q3_VERSION );
|
||||||
|
|
||||||
for (x=0 ; x<i ; x++) {
|
for (x=0 ; x<i ; x++) {
|
||||||
|
SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x + 1 ) * SMALLCHAR_WIDTH,
|
||||||
SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x ) * SMALLCHAR_WIDTH,
|
lines - SMALLCHAR_HEIGHT, Q3_VERSION[x] );
|
||||||
(lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), Q3_VERSION[x] );
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue