mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- Fixed typo in SBarInfo WeaponIcon code. That said, I do wonder if the new behavior might break some existing status bar since it might be intended that weapons such as the fists draw no icon.
SVN r3604 (trunk)
This commit is contained in:
parent
118e513d03
commit
c07eaa4d31
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ class CommandDrawImage : public SBarInfoCommand
|
|||
{
|
||||
icon = GetWeaponIcon(weapon);
|
||||
}
|
||||
texture = TexMan[weapon->Icon];
|
||||
texture = TexMan[icon];
|
||||
}
|
||||
}
|
||||
else if(type == SIGIL)
|
||||
|
|
Loading…
Reference in a new issue