summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-04 00:25:14 +0200
committerGitHub <noreply@github.com>2019-07-04 00:25:14 +0200
commite0eb0d991f876031bbfb82d3fd66017bab4d73d5 (patch)
treedee89898d81e7c3772dd51c44958314093d06167
parentMerge pull request #106 from Nick007J/master (diff)
parentFixed type of m_ItemToFlash (diff)
downloadre3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar.gz
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar.bz2
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar.lz
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar.xz
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.tar.zst
re3-e0eb0d991f876031bbfb82d3fd66017bab4d73d5.zip
-rw-r--r--src/render/Hud.cpp2
-rw-r--r--src/render/Hud.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/render/Hud.cpp b/src/render/Hud.cpp
index d36675cf..081aaa64 100644
--- a/src/render/Hud.cpp
+++ b/src/render/Hud.cpp
@@ -47,7 +47,7 @@ wchar *CHud::m_PagerMessage = (wchar*)0x878840;
bool &CHud::m_Wants_To_Draw_Hud = *(bool*)0x95CD89;
bool &CHud::m_Wants_To_Draw_3dMarkers = *(bool*)0x95CD62;
wchar(*CHud::m_BigMessage)[128] = (wchar(*)[128])0x664CE0;
-int32 &CHud::m_ItemToFlash = *(int32*)0x95CC82;
+int16 &CHud::m_ItemToFlash = *(int16*)0x95CC82;
// These aren't really in CHud
float CHud::BigMessageInUse[6];
diff --git a/src/render/Hud.h b/src/render/Hud.h
index df02b4d0..1567abdc 100644
--- a/src/render/Hud.h
+++ b/src/render/Hud.h
@@ -62,7 +62,7 @@ public:
static bool &m_Wants_To_Draw_Hud;
static bool &m_Wants_To_Draw_3dMarkers;
static wchar(*m_BigMessage)[128];
- static int32 &m_ItemToFlash;
+ static int16 &m_ItemToFlash;
// These aren't really in CHud
static float BigMessageInUse[6];