summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Record.cpp6
-rw-r--r--src/control/Record.h13
2 files changed, 19 insertions, 0 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/control/Record.h b/src/control/Record.h
new file mode 100644
index 00000000..97a9663d
--- /dev/null
+++ b/src/control/Record.h
@@ -0,0 +1,13 @@
+#pragma once
+
+class CRecordDataForGame
+{
+public:
+ static UInt16 &RecordingState;
+};
+
+class CRecordDataForChase
+{
+public:
+ static UInt8 &Status;
+};