vdp fifo, adjust latency delay

This commit is contained in:
kub 2021-03-23 22:39:17 +01:00
parent bcc34f2cf8
commit 4d4bea1c5f

View file

@ -263,7 +263,7 @@ int PicoVideoFIFOWrite(int count, int flags, unsigned sr_mask,unsigned sr_flags)
// update FIFO state if it was empty
if (!(pv->status & PVS_FIFORUN)) {
vf->fifo_slot = Cyc2Sl(vf, lc+8); // FIFO latency ~3 vdp slots
vf->fifo_slot = Cyc2Sl(vf, lc+9); // FIFO latency ~3 vdp slots
pv->status |= PVS_FIFORUN;
pv->fifo_cnt = count << (flags & FQ_BYTE);
}