From f567fd93b9b94c2b36cee7b88c25b089b7382652 Mon Sep 17 00:00:00 2001 From: Skyler Saleh Date: Sun, 21 Mar 2021 12:02:23 -0700 Subject: [PATCH] Apple M1: Removed unavailable CPU core dialog box Removed the unavailable CPU core dialog box that asked users to change their selected CPU core to one that is available. Instead, Dolphin now just overrides the core to the default, and logs that it performed the override. --- Source/Core/Core/PowerPC/JitInterface.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index e36b27314c..adb12f2fa3 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -71,9 +71,8 @@ CPUCoreBase* InitJitCore(PowerPC::CPUCore core) break; default: - PanicAlertFmtT("The selected CPU emulation core ({0}) is not available. " - "Please select a different CPU emulation core in the settings.", - core); + // Under this case the caller overrides the CPU core to the default and logs that + // it performed the override. g_jit = nullptr; return nullptr; }