From 4b4239de62b4ca0ab3c52c36227380eacb657813 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Tue, 19 Dec 2023 09:15:35 -0500 Subject: Set `NDS::EnableJIT` in the constructor (#1921) --- src/NDS.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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), -- cgit v1.2.3