Give PowerPC more cycles to acknowledge sound IRQs

400 cycles was not enough and would cause VF3 to hang. 1000 cycles should be more than plenty
This commit is contained in:
gm-matthew 2024-07-14 02:30:51 +01:00 committed by Bart Trzynadlowski
parent 5a8cddd09a
commit a2645c944f

View file

@ -2140,8 +2140,8 @@ void CModel3::RunMainBoardFrame(void)
// Process MIDI interrupt // Process MIDI interrupt
IRQ.Assert(0x40); IRQ.Assert(0x40);
ppc_execute(400); // give PowerPC time to acknowledge IR ppc_execute(1000); // give PowerPC time to acknowledge IR
dispCycles -= 400; dispCycles -= 1000;
++irqCount; ++irqCount;
if (irqCount > 128) if (irqCount > 128)