mirror of https://github.com/PCSX2/pcsx2.git
PCSX2: IPU Normal error end of video freeze fix
Fixes end of video freeze with IPU Normal error in games like Enter The Matrix, Rygar, Freestyle Metal X, etc.
This commit is contained in:
parent
0b86aad059
commit
59a4442880
|
@ -293,6 +293,19 @@ __fi void dmaIPU1() // toIPU
|
|||
hwDmacIrq(DMAC_TO_IPU);
|
||||
}
|
||||
|
||||
if (ipu1ch.chcr.MOD == NORMAL_MODE && ipu1ch.qwc == 0) //avoids freeze when IPU1 Normal error is triggered
|
||||
{
|
||||
/*ipu1ch.chcr.STR = false;
|
||||
// Hack to force stop IPU
|
||||
ipuRegs.cmd.BUSY = 0;
|
||||
ipuRegs.ctrl.BUSY = 0;
|
||||
ipuRegs.topbusy = 0;
|
||||
//
|
||||
hwDmacIrq(DMAC_TO_IPU);*/
|
||||
IPU_LOG("IPU1 Normal error fix");
|
||||
ipu1ch.qwc = 1;
|
||||
}
|
||||
|
||||
if (ipu1ch.chcr.MOD == CHAIN_MODE) //Chain Mode
|
||||
{
|
||||
IPU_LOG("Setting up IPU1 Chain mode");
|
||||
|
@ -321,19 +334,6 @@ __fi void dmaIPU1() // toIPU
|
|||
IPU1dma();
|
||||
}
|
||||
else //Normal Mode
|
||||
{
|
||||
if(ipu1ch.qwc == 0)
|
||||
{
|
||||
ipu1ch.chcr.STR = false;
|
||||
// Hack to force stop IPU
|
||||
ipuRegs.cmd.BUSY = 0;
|
||||
ipuRegs.ctrl.BUSY = 0;
|
||||
ipuRegs.topbusy = 0;
|
||||
//
|
||||
hwDmacIrq(DMAC_TO_IPU);
|
||||
Console.Warning("IPU1 Normal error!");
|
||||
}
|
||||
else
|
||||
{
|
||||
IPU_LOG("Setting up IPU1 Normal mode");
|
||||
IPU1Status.InProgress = true;
|
||||
|
@ -341,7 +341,6 @@ __fi void dmaIPU1() // toIPU
|
|||
IPU1Status.DMAMode = DMA_MODE_NORMAL;
|
||||
IPU1dma();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extern void GIFdma();
|
||||
|
|
Loading…
Reference in New Issue