summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-12 11:18:11 +0200
committerGitHub <noreply@github.com>2019-06-12 11:18:11 +0200
commita375709eeb66b8013da3c1efbfff850d36e4b9c9 (patch)
treef7dceb2aee62bc40554b69a6c0c3051371e4ddc2 /src/control
parentanimation fixes (diff)
parentAdd NUMONSCREENTIMERENTRIES in config.h (diff)
downloadre3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar.gz
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar.bz2
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar.lz
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar.xz
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.tar.zst
re3-a375709eeb66b8013da3c1efbfff850d36e4b9c9.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Replay.cpp4
-rw-r--r--src/control/Replay.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/control/Replay.cpp b/src/control/Replay.cpp
index 32e7dc0c..6cfbd846 100644
--- a/src/control/Replay.cpp
+++ b/src/control/Replay.cpp
@@ -2,4 +2,6 @@
#include "patcher.h"
#include "Replay.h"
-WRAPPER void CReplay::Display(void) { EAXJMP(0x595EE0); } \ No newline at end of file
+uint8 &CReplay::Mode = *(uint8*)0x95CD5B;
+
+WRAPPER void CReplay::Display(void) { EAXJMP(0x595EE0); }
diff --git a/src/control/Replay.h b/src/control/Replay.h
index 77e50403..eca818d6 100644
--- a/src/control/Replay.h
+++ b/src/control/Replay.h
@@ -4,4 +4,6 @@ class CReplay
{
public:
static void Display(void);
+
+ static uint8 &Mode;
};