Skip to content

Commit

Permalink
Fix tourney score board. Thanks Zack Middleton for the patch and report
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Schulz committed Feb 6, 2011
1 parent cef9b8c commit 61c8b87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/cgame/cg_scoreboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -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] ) {
Expand Down

0 comments on commit 61c8b87

Please sign in to comment.