mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Enable tourney scoreboard in Team Arena
"/team score" draws an oversized scoreboard in Q3. In Team Arena it draws nothing. They probably intended to replace it with the new .menu UI. But since it didn't happen, go ahead and use the Q3 tournament scoreboard.
This commit is contained in:
parent
1066214548
commit
082376ed9e
3 changed files with 2 additions and 9 deletions
|
@ -2610,13 +2610,6 @@ static void CG_Draw2D(stereoFrame_t stereoFrame)
|
|||
}
|
||||
|
||||
|
||||
static void CG_DrawTourneyScoreboard( void ) {
|
||||
#ifdef MISSIONPACK
|
||||
#else
|
||||
CG_DrawOldTourneyScoreboard();
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
=====================
|
||||
CG_DrawActive
|
||||
|
|
|
@ -1440,7 +1440,7 @@ void CG_DrawInformation( void );
|
|||
// cg_scoreboard.c
|
||||
//
|
||||
qboolean CG_DrawOldScoreboard( void );
|
||||
void CG_DrawOldTourneyScoreboard( void );
|
||||
void CG_DrawTourneyScoreboard( void );
|
||||
|
||||
//
|
||||
// cg_consolecmds.c
|
||||
|
|
|
@ -449,7 +449,7 @@ CG_DrawTourneyScoreboard
|
|||
Draw the oversize scoreboard for tournements
|
||||
=================
|
||||
*/
|
||||
void CG_DrawOldTourneyScoreboard( void ) {
|
||||
void CG_DrawTourneyScoreboard( void ) {
|
||||
const char *s;
|
||||
vec4_t color;
|
||||
int min, tens, ones;
|
||||
|
|
Loading…
Reference in a new issue