IPU: Fill Input FIFO on command end ready for next command

This commit is contained in:
refractionpcsx2 2021-02-19 11:16:07 +00:00
parent 32eac3ff13
commit 40d9e13334
1 changed files with 6 additions and 0 deletions

View File

@ -1000,4 +1000,10 @@ __noinline void IPUWorker()
ipuRegs.ctrl.BUSY = 0;
//ipu_cmd.current = 0xffffffff;
hwIntcIrq(INTC_IPU);
// Fill the FIFO ready for the next command
if (ipu1ch.chcr.STR && cpuRegs.eCycle[4] == 0x9999)
{
CPU_INT(DMAC_TO_IPU, 32);
}
}