From 14ebd2d037c07b7c9ccd392748d3e29790c94334 Mon Sep 17 00:00:00 2001 From: Elad <18193363+elad335@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:32:19 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Elad <18193363+elad335@users.noreply.github.com> --- rpcs3/Emu/System.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index b173cb23cd..4f9ba08d7a 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -306,9 +306,9 @@ static void fixup_settings(const psf::registry* _psf) if (g_cfg.core.spu_decoder == spu_decoder_type::asmjit) { #ifdef LLVM_AVAILABLE - constexpr auto arm64_spu_fallback = spu_decoder_type::llvm; -#else constexpr auto arm64_spu_fallback = spu_decoder_type::dynamic; +#else + constexpr auto arm64_spu_fallback = spu_decoder_type::_static; #endif sys_log.warning("The setting '%s' is currently not supported on ARM64 builds and will therefore be changed from '%s' to '%s' during emulation.", g_cfg.core.spu_decoder.get_name(), spu_decoder_type::asmjit, arm64_spu_fallback);