aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Talavera <jesse@jesse.tg>2023-12-19 09:15:35 -0500
committerGitHub <noreply@github.com>2023-12-19 15:15:35 +0100
commit4b4239de62b4ca0ab3c52c36227380eacb657813 (patch)
treee04819a11527ec4fcc24e7fbfaca95217141ba94
parent1bec2a92935d7cb2e47088d00d89b69f25c82967 (diff)
Set `NDS::EnableJIT` in the constructor (#1921)
-rw-r--r--src/NDS.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/NDS.cpp b/src/NDS.cpp
index ed68b68..3582a3b 100644
--- a/src/NDS.cpp
+++ b/src/NDS.cpp
@@ -105,6 +105,7 @@ NDS::NDS(NDSArgs&& args, int type) noexcept :
AREngine(*this),
ARM9(*this, args.GDB, args.JIT.has_value()),
ARM7(*this, args.GDB, args.JIT.has_value()),
+ EnableJIT(args.JIT.has_value()),
DMAs {
DMA(0, 0, *this),
DMA(0, 1, *this),