mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 05:45:38 +00:00
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:
parent
5a8cddd09a
commit
a2645c944f
|
@ -2140,8 +2140,8 @@ void CModel3::RunMainBoardFrame(void)
|
|||
|
||||
// Process MIDI interrupt
|
||||
IRQ.Assert(0x40);
|
||||
ppc_execute(400); // give PowerPC time to acknowledge IR
|
||||
dispCycles -= 400;
|
||||
ppc_execute(1000); // give PowerPC time to acknowledge IR
|
||||
dispCycles -= 1000;
|
||||
|
||||
++irqCount;
|
||||
if (irqCount > 128)
|
||||
|
|
Loading…
Reference in a new issue