mirror of https://github.com/PCSX2/pcsx2.git
Fixed bug which stopped Zone of Enders booting, introduced in r1385
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1391 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
91be7889e2
commit
81293ede5d
|
@ -2328,14 +2328,13 @@ int VIF1transfer(u32 *data, int size, int istag)
|
|||
if(vif1Regs->stat & VIF1_STAT_VGW)
|
||||
{
|
||||
vif1.vifstalled = true;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
if (vif1ch->qwc == 0 && (vif1.irqoffset == 0 || istag == 1))
|
||||
vif1.inprogress = 0;
|
||||
|
||||
return 0;
|
||||
return vif1.vifstalled ? -2 : 0;
|
||||
}
|
||||
|
||||
void vif1TransferFromMemory()
|
||||
|
|
Loading…
Reference in New Issue