summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-12 13:46:02 +0200
committeraap <aap@papnet.eu>2019-06-12 13:46:02 +0200
commit01babd43b1e500b36d67d28077b5cffd13212068 (patch)
tree5288e7a0cbe3c157e1dc81d6e4c30ffc6222ff59 /src/control
parentupdated README (diff)
downloadre3-01babd43b1e500b36d67d28077b5cffd13212068.tar
re3-01babd43b1e500b36d67d28077b5cffd13212068.tar.gz
re3-01babd43b1e500b36d67d28077b5cffd13212068.tar.bz2
re3-01babd43b1e500b36d67d28077b5cffd13212068.tar.lz
re3-01babd43b1e500b36d67d28077b5cffd13212068.tar.xz
re3-01babd43b1e500b36d67d28077b5cffd13212068.tar.zst
re3-01babd43b1e500b36d67d28077b5cffd13212068.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Replay.h6
-rw-r--r--src/control/Script.cpp6
-rw-r--r--src/control/Script.h7
3 files changed, 18 insertions, 1 deletions
diff --git a/src/control/Replay.h b/src/control/Replay.h
index eca818d6..85a9e35e 100644
--- a/src/control/Replay.h
+++ b/src/control/Replay.h
@@ -3,7 +3,11 @@
class CReplay
{
public:
- static void Display(void);
+ enum {
+ MODE_1
+ };
static uint8 &Mode;
+
+ static void Display(void);
};
diff --git a/src/control/Script.cpp b/src/control/Script.cpp
new file mode 100644
index 00000000..71fc7bcd
--- /dev/null
+++ b/src/control/Script.cpp
@@ -0,0 +1,6 @@
+#include "common.h"
+#include "patcher.h"
+
+#include "Script.h"
+
+uint8 *CTheScripts::ScriptSpace = (uint8*)0x74B248;
diff --git a/src/control/Script.h b/src/control/Script.h
new file mode 100644
index 00000000..6f329e1f
--- /dev/null
+++ b/src/control/Script.h
@@ -0,0 +1,7 @@
+#pragma once
+
+class CTheScripts
+{
+public:
+ static uint8 *ScriptSpace;//[160*1024]
+};