mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Added scoreboard fix by Karate Chris.
SVN r671 (trunk)
This commit is contained in:
parent
fdbd18c50e
commit
d7add9ce76
3 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,5 @@
|
|||
January 6, 2008 (Changes by Graf Zahl)
|
||||
- Added scoreboard fix by Karate Chris.
|
||||
- Added teamgame fix for menu by Karate Chris.
|
||||
- Added GZDoom's Sector_Outside sector type which forces outside fog
|
||||
regardless of ceiling texture.
|
||||
|
|
|
@ -249,9 +249,6 @@ void CT_Drawer (void)
|
|||
}
|
||||
|
||||
if (players[consoleplayer].camera != NULL &&
|
||||
((deathmatch && teamplay && sb_teamdeathmatch_enable) ||
|
||||
(deathmatch && !teamplay && sb_deathmatch_enable) ||
|
||||
(!deathmatch && multiplayer && sb_cooperative_enable)) &&
|
||||
(Button_ShowScores.bDown ||
|
||||
players[consoleplayer].camera->health <= 0))
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue