SPU: Only fire IRQ for Reverb reads when FxEnable

This commit is contained in:
Ziemas 2024-05-03 22:15:40 +02:00 committed by refractionpcsx2
parent 09ea13df55
commit fd81349dab
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ StereoOut32 V_Core::DoReverb(StereoOut32 Input)
for (int i = 0; i < 2; i++)
{
if (Cores[i].IRQEnable && ((Cores[i].IRQA >= EffectsStartA) && (Cores[i].IRQA <= EffectsEndA)))
if (FxEnable && Cores[i].IRQEnable && ((Cores[i].IRQA >= EffectsStartA) && (Cores[i].IRQA <= EffectsEndA)))
{
if ((Cores[i].IRQA == same_src) || (Cores[i].IRQA == diff_src) ||
(Cores[i].IRQA == same_dst) || (Cores[i].IRQA == diff_dst) ||