mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 00:41:59 +00:00
Fixed crash with teamplay and the scoreboard
Now checks to make sure the player is on a valid team before fetching its info.
This commit is contained in:
parent
345926f057
commit
d33df9dba8
1 changed files with 2 additions and 1 deletions
|
@ -425,7 +425,8 @@ static void HU_DrawPlayer (player_t *player, bool highlight, int col1, int col2,
|
|||
|
||||
HU_DrawFontScaled(col5, y + ypadding, color, str);
|
||||
|
||||
if (teamplay && Teams[player->userinfo.GetTeam()].GetLogo().IsNotEmpty ())
|
||||
const int team = player->userinfo.GetTeam();
|
||||
if (team != TEAM_NONE && teamplay && Teams[team].GetLogo().IsNotEmpty ())
|
||||
{
|
||||
auto pic = TexMan.GetGameTextureByName(Teams[player->userinfo.GetTeam()].GetLogo().GetChars ());
|
||||
DrawTexture(twod, pic, col1 - (pic->GetDisplayWidth() + 2) * CleanXfac, y,
|
||||
|
|
Loading…
Reference in a new issue