Fix tourney score board. Thanks Zack Middleton for the patch and report

This commit is contained in:
Thilo Schulz 2011-02-06 17:33:51 +00:00
parent cef9b8ce62
commit 61c8b878b8
1 changed files with 5 additions and 5 deletions

View File

@ -463,16 +463,16 @@ void CG_DrawOldTourneyScoreboard( void ) {
trap_SendClientCommand( "score" );
}
color[0] = 1;
color[1] = 1;
color[2] = 1;
color[3] = 1;
// draw the dialog background
color[0] = color[1] = color[2] = 0;
color[3] = 1;
CG_FillRect( 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, color );
color[0] = 1;
color[1] = 1;
color[2] = 1;
color[3] = 1;
// print the mesage of the day
s = CG_ConfigString( CS_MOTD );
if ( !s[0] ) {