From 81293ede5d8a0233d19358d2319335e91b157933 Mon Sep 17 00:00:00 2001 From: refraction Date: Thu, 18 Jun 2009 13:00:21 +0000 Subject: [PATCH] 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 --- pcsx2/VifDma.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcsx2/VifDma.cpp b/pcsx2/VifDma.cpp index f79dab837e..21fa1fa719 100644 --- a/pcsx2/VifDma.cpp +++ b/pcsx2/VifDma.cpp @@ -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()