mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-03 01:13:22 +00:00
- Fixed: Inventory's AltHUDIcon must be initialized to null, not invalid.
SVN r3912 (scripting)
This commit is contained in:
parent
110c253854
commit
5b8a54e5ee
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ IMPLEMENT_CLASS(PClassInventory)
|
||||||
PClassInventory::PClassInventory()
|
PClassInventory::PClassInventory()
|
||||||
{
|
{
|
||||||
GiveQuest = 0;
|
GiveQuest = 0;
|
||||||
AltHUDIcon.SetInvalid();
|
AltHUDIcon.SetNull();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PClassInventory::Derive(PClass *newclass)
|
void PClassInventory::Derive(PClass *newclass)
|
||||||
|
|
Loading…
Reference in a new issue