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:
Boondorl 2025-03-17 12:53:10 -04:00 committed by Ricardo Luís Vaz Silva
parent 345926f057
commit d33df9dba8

View file

@ -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,