mirror of https://github.com/PCSX2/pcsx2.git
Minor fix from yesterday's IPU refactoring (fixes some homebrew stuffs)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3738 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3cfd0c68af
commit
e246d617ef
|
@ -381,7 +381,10 @@ __fi void dmaIPU0() // fromIPU
|
|||
ipu0dma.chcr.STR = false;
|
||||
hwDmacIrq(DMAC_FROM_IPU);
|
||||
}
|
||||
IPUProcessInterrupt();
|
||||
|
||||
//IPUProcessInterrupt();
|
||||
extern void IPUWorker();
|
||||
if (ipuRegs.ctrl.BUSY) IPUWorker();
|
||||
}
|
||||
|
||||
__fi void dmaIPU1() // toIPU
|
||||
|
|
Loading…
Reference in New Issue