SPU: Reverb input should be muted when SPU muted
Fixes pause menu in Bubsy 3D, Tuning Car Battle Spec R.
This commit is contained in:
parent
889427e7f6
commit
bc30569a6d
|
@ -2357,6 +2357,8 @@ void SPU::Execute(void* param, TickCount ticks, TickCount ticks_late)
|
||||||
{
|
{
|
||||||
left_sum = 0;
|
left_sum = 0;
|
||||||
right_sum = 0;
|
right_sum = 0;
|
||||||
|
reverb_in_left = 0;
|
||||||
|
reverb_in_right = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update noise once per frame.
|
// Update noise once per frame.
|
||||||
|
|
Loading…
Reference in New Issue