diff options
author | Tim Angus <tim@ngus.net> | 2007-09-22 20:55:11 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2007-09-22 20:55:11 +0000 |
commit | 6eb2ff79c06c6d5acab3070937a680ff3494ba50 (patch) | |
tree | 4d14fb84712d4c7a1c2ed19b2056b0e40b445d4b /src/client/cl_console.c | |
parent | 0edfa2794ebbcc7019093e5d88b7ca7269704902 (diff) |
* Merge of ioq3-r1186
Diffstat (limited to 'src/client/cl_console.c')
-rw-r--r-- | src/client/cl_console.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/client/cl_console.c b/src/client/cl_console.c index 14bc65be..9d2d8e7c 100644 --- a/src/client/cl_console.c +++ b/src/client/cl_console.c @@ -464,7 +464,7 @@ void Con_DrawInput (void) { SCR_DrawSmallChar( con.xadjust + 1 * SMALLCHAR_WIDTH, y, ']' ); Field_Draw( &g_consoleField, con.xadjust + 2 * SMALLCHAR_WIDTH, y, - SCREEN_WIDTH - 3 * SMALLCHAR_WIDTH, qtrue ); + SCREEN_WIDTH - 3 * SMALLCHAR_WIDTH, qtrue, qtrue ); } /* @@ -520,7 +520,6 @@ void Con_DrawSolidConsole( float frac ) { for (x=0 ; x<i ; x++) { SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x ) * SMALLCHAR_WIDTH, - (lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), Q3_VERSION[x] ); } @@ -615,17 +614,17 @@ void Con_DrawConsole( void ) { if( chat_team ) { - SCR_DrawBigString( 8, 232, "Team Say:", 1.0f ); + SCR_DrawBigString( 8, 232, "Team Say:", 1.0f, qfalse ); skip = 11; } else { - SCR_DrawBigString( 8, 232, "Say:", 1.0f ); + SCR_DrawBigString( 8, 232, "Say:", 1.0f, qfalse ); skip = 5; } Field_BigDraw( &chatField, skip * BIGCHAR_WIDTH, 232, - SCREEN_WIDTH - ( skip + 1 ) * BIGCHAR_WIDTH, qtrue ); + SCREEN_WIDTH - ( skip + 1 ) * BIGCHAR_WIDTH, qtrue, qtrue ); } } |