summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/control/Record.cpp6
-rw-r--r--src/control/Record.h (renamed from src/RecordDataForGame.h)8
2 files changed, 13 insertions, 1 deletions
diff --git a/src/control/Record.cpp b/src/control/Record.cpp
new file mode 100644
index 00000000..8949da5e
--- /dev/null
+++ b/src/control/Record.cpp
@@ -0,0 +1,6 @@
+#include "common.h"
+#include "Record.h"
+
+UInt16 &CRecordDataForGame::RecordingState = *(UInt16*)0x95CC24;
+
+UInt8 &CRecordDataForChase::Status = *(UInt8*)0x95CDCE;
diff --git a/src/RecordDataForGame.h b/src/control/Record.h
index 5d007ce5..97a9663d 100644
--- a/src/RecordDataForGame.h
+++ b/src/control/Record.h
@@ -4,4 +4,10 @@ class CRecordDataForGame
{
public:
static UInt16 &RecordingState;
-}; \ No newline at end of file
+};
+
+class CRecordDataForChase
+{
+public:
+ static UInt8 &Status;
+};