From 51fefb36a06eedf616dfe493eeb965ab017b1ece Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 1 Oct 2024 22:41:01 +1000 Subject: [PATCH] System: Fix crash when toggling SW with interpreter --- src/core/system.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index 3131bddf2..2cebaeffa 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -4430,6 +4430,8 @@ void System::CheckForSettingsChanges(const Settings& old_settings) CPU::PGXP::Initialize(); CPU::CodeCache::Reset(); + CPU::UpdateDebugDispatcherFlag(); + InterruptExecution(); } if (g_settings.display_show_gpu_stats != old_settings.display_show_gpu_stats)