From e85f293356438fac16e72062ae1bb83e09dd82c7 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 23 Jan 2023 18:56:11 -0800 Subject: [PATCH] Clear the correct SR bit --- Source/Core/Core/DSP/DSPCore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/DSP/DSPCore.cpp b/Source/Core/Core/DSP/DSPCore.cpp index be40b269dd..da134f3d7d 100644 --- a/Source/Core/Core/DSP/DSPCore.cpp +++ b/Source/Core/Core/DSP/DSPCore.cpp @@ -225,7 +225,7 @@ bool SDSP::CheckExceptions() pc = static_cast(i * 2); exceptions &= ~(1 << i); - r.sr &= ~SR_EXT_INT_ENABLE; + r.sr &= ~SR_EXT_INT_ENABLE_2; return true; } else