- Added scoreboard fix by Karate Chris.

SVN r671 (trunk)
This commit is contained in:
Christoph Oelckers 2008-01-06 11:46:01 +00:00
commit d7add9ce76
3 changed files with 6 additions and 5 deletions

View file

@ -114,7 +114,7 @@ void HU_DrawScores (player_t *player)
}
else
{
if (!sb_cooperative_enable)
if (!sb_cooperative_enable || !multiplayer)
return;
}
@ -308,7 +308,10 @@ static void HU_DrawPlayer (player_t *player, bool highlight, int x, int y, int h
if (teamplay && deathmatch)
{
color = teams[player->userinfo.team].GetTextColor ();
if (TEAMINFO_IsValidTeam (player->userinfo.team))
color = teams[player->userinfo.team].GetTextColor ();
else
color = CR_GREY;
}
else
{