From 5b8a54e5ee8c0e44ebfb62cfc7190c81b3f8a60c Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 27 Oct 2012 01:37:10 +0000 Subject: [PATCH] - Fixed: Inventory's AltHUDIcon must be initialized to null, not invalid. SVN r3912 (scripting) --- src/g_shared/a_pickups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_shared/a_pickups.cpp b/src/g_shared/a_pickups.cpp index 8f7342e058..f2f5b08572 100644 --- a/src/g_shared/a_pickups.cpp +++ b/src/g_shared/a_pickups.cpp @@ -27,7 +27,7 @@ IMPLEMENT_CLASS(PClassInventory) PClassInventory::PClassInventory() { GiveQuest = 0; - AltHUDIcon.SetInvalid(); + AltHUDIcon.SetNull(); } void PClassInventory::Derive(PClass *newclass)