mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Fixed: Uninitialized variable on DrawSelectedInventory.
This commit is contained in:
parent
20f7f524ca
commit
5abacf0b2f
1 changed files with 1 additions and 1 deletions
|
@ -1595,7 +1595,7 @@ class CommandDrawSelectedInventory : public CommandDrawImage, private CommandDra
|
|||
public:
|
||||
CommandDrawSelectedInventory(SBarInfo *script) : CommandDrawImage(script),
|
||||
CommandDrawNumber(script), alternateOnEmpty(false),
|
||||
artiflash(false), alwaysShowCounter(false)
|
||||
artiflash(false), alwaysShowCounter(false), itemflash(false)
|
||||
{
|
||||
length = INT_MAX; // Counter size
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue