aboutsummaryrefslogtreecommitdiff
path: root/src/AREngine.cpp
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2022-01-07 14:00:43 +0100
committerGitHub <noreply@github.com>2022-01-07 14:00:43 +0100
commite665e25bd3ea4b9af932e182b1c93e77b762ccb0 (patch)
tree06b5ceb336e42868806113cbf1f45add2b56a3e8 /src/AREngine.cpp
parentc4cd9da674bcfb8dca89086ce3ffa2d3b03438eb (diff)
Custom path support (#1333)
also including: * getting rid of shitty strings * all new, cleaner ROM handling code * base for DSi savestates * GBA slot addons (for now, memory cart)
Diffstat (limited to 'src/AREngine.cpp')
-rw-r--r--src/AREngine.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/AREngine.cpp b/src/AREngine.cpp
index ec3b70e..eb5ab34 100644
--- a/src/AREngine.cpp
+++ b/src/AREngine.cpp
@@ -50,8 +50,6 @@ void DeInit()
void Reset()
{
- CodeFile = nullptr;
-
if (NDS::ConsoleType == 1)
{
BusRead8 = DSi::ARM7Read8;
@@ -73,6 +71,11 @@ void Reset()
}
+ARCodeFile* GetCodeFile()
+{
+ return CodeFile;
+}
+
void SetCodeFile(ARCodeFile* file)
{
CodeFile = file;