mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +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:
|
public:
|
||||||
CommandDrawSelectedInventory(SBarInfo *script) : CommandDrawImage(script),
|
CommandDrawSelectedInventory(SBarInfo *script) : CommandDrawImage(script),
|
||||||
CommandDrawNumber(script), alternateOnEmpty(false),
|
CommandDrawNumber(script), alternateOnEmpty(false),
|
||||||
artiflash(false), alwaysShowCounter(false)
|
artiflash(false), alwaysShowCounter(false), itemflash(false)
|
||||||
{
|
{
|
||||||
length = INT_MAX; // Counter size
|
length = INT_MAX; // Counter size
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue