forgot to disable this line on arm

This commit is contained in:
SimoneN64
2025-07-06 08:14:51 +02:00
parent d6b78232a6
commit 451ff7c4aa

View File

@@ -6,7 +6,9 @@ namespace n64 {
Core::Core(CPUType cpuType) { Core::Core(CPUType cpuType) {
switch (cpuType) { switch (cpuType) {
case Interpreted: cpu = std::make_unique<Interpreter>(parallel); break; case Interpreted: cpu = std::make_unique<Interpreter>(parallel); break;
#ifndef __aarch64__
case DynamicRecompiler: cpu = std::make_unique<JIT>(parallel); break; case DynamicRecompiler: cpu = std::make_unique<JIT>(parallel); break;
#endif
default: Util::panic("Unimplemented CPU type\n"); default: Util::panic("Unimplemented CPU type\n");
} }
} }