[quake3-commits] r1860 - trunk/code/cgame
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sun Feb 6 12:33:51 EST 2011
Author: thilo
Date: 2011-02-06 12:33:51 -0500 (Sun, 06 Feb 2011)
New Revision: 1860
Modified:
trunk/code/cgame/cg_scoreboard.c
Log:
Fix tourney score board. Thanks Zack Middleton for the patch and report
Modified: trunk/code/cgame/cg_scoreboard.c
===================================================================
--- trunk/code/cgame/cg_scoreboard.c 2011-02-06 17:19:06 UTC (rev 1859)
+++ trunk/code/cgame/cg_scoreboard.c 2011-02-06 17:33:51 UTC (rev 1860)
@@ -463,16 +463,16 @@
trap_SendClientCommand( "score" );
}
+ // 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;
- // draw the dialog background
- color[0] = color[1] = color[2] = 0;
- color[3] = 1;
- CG_FillRect( 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, color );
-
// print the mesage of the day
s = CG_ConfigString( CS_MOTD );
if ( !s[0] ) {
More information about the quake3-commits
mailing list