Exed Exes: fix warped-record tempo effect in the games music (z80 audiocpu needs long ack)

This commit is contained in:
dinkc64 2015-01-04 22:15:15 +00:00
parent 4f2d1e6ca5
commit e6a6cfdd7e
1 changed files with 3 additions and 1 deletions

View File

@ -638,7 +638,9 @@ static INT32 DrvFrame()
nCyclesSegment = ZetRun(nCyclesSegment);
nCyclesDone[nCurrentCPU] += nCyclesSegment;
if ((i & 3) == 3) {
ZetSetIRQLine(0, ZET_IRQSTATUS_AUTO);
ZetSetIRQLine(0, ZET_IRQSTATUS_ACK);
nCyclesDone[nCurrentCPU] += ZetRun(100);
ZetSetIRQLine(0, ZET_IRQSTATUS_NONE);
}
ZetClose();
}