mirror of https://github.com/PCSX2/pcsx2.git
SPU: Only fire IRQ for Reverb reads when FxEnable
This commit is contained in:
parent
09ea13df55
commit
fd81349dab
|
@ -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) ||
|
||||
|
|
Loading…
Reference in New Issue