Exed Exes: fix warped-record tempo effect in the games music (z80 audiocpu needs long ack)
This commit is contained in:
parent
4f2d1e6ca5
commit
e6a6cfdd7e
|
@ -638,7 +638,9 @@ static INT32 DrvFrame()
|
||||||
nCyclesSegment = ZetRun(nCyclesSegment);
|
nCyclesSegment = ZetRun(nCyclesSegment);
|
||||||
nCyclesDone[nCurrentCPU] += nCyclesSegment;
|
nCyclesDone[nCurrentCPU] += nCyclesSegment;
|
||||||
if ((i & 3) == 3) {
|
if ((i & 3) == 3) {
|
||||||
ZetSetIRQLine(0, ZET_IRQSTATUS_AUTO);
|
ZetSetIRQLine(0, ZET_IRQSTATUS_ACK);
|
||||||
|
nCyclesDone[nCurrentCPU] += ZetRun(100);
|
||||||
|
ZetSetIRQLine(0, ZET_IRQSTATUS_NONE);
|
||||||
}
|
}
|
||||||
ZetClose();
|
ZetClose();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue