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:
refraction 2009-06-18 13:00:21 +00:00
parent 91be7889e2
commit 81293ede5d
1 changed files with 1 additions and 2 deletions

View File

@ -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()