From 451ff7c4aaa49acecd987ff985b7f330d4e0b174 Mon Sep 17 00:00:00 2001 From: SimoneN64 Date: Sun, 6 Jul 2025 08:14:51 +0200 Subject: [PATCH] forgot to disable this line on arm --- src/backend/Core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/Core.cpp b/src/backend/Core.cpp index d7497c50..a2f049f5 100644 --- a/src/backend/Core.cpp +++ b/src/backend/Core.cpp @@ -6,7 +6,9 @@ namespace n64 { Core::Core(CPUType cpuType) { switch (cpuType) { case Interpreted: cpu = std::make_unique(parallel); break; + #ifndef __aarch64__ case DynamicRecompiler: cpu = std::make_unique(parallel); break; + #endif default: Util::panic("Unimplemented CPU type\n"); } }