From 2b0f47260ab14a98651a91821a4e8d0dffa1428b Mon Sep 17 00:00:00 2001 From: refraction Date: Sun, 14 Nov 2010 12:25:02 +0000 Subject: [PATCH] Fixed the bug i made on my killzone commit, all games appear to work now that were broken, sorry about that! git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4019 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/Vif_Transfer.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pcsx2/Vif_Transfer.cpp b/pcsx2/Vif_Transfer.cpp index 0aabd1f675..ea027086a4 100644 --- a/pcsx2/Vif_Transfer.cpp +++ b/pcsx2/Vif_Transfer.cpp @@ -158,10 +158,9 @@ _vifT static __fi bool vifTransfer(u32 *data, int size, bool TTE) { if(((vifXRegs.code >> 24) & 0x7f) != 0x7) { vifXRegs.stat.VIS = true; // Note: commenting this out fixes WALL-E? - } - - return false; - } + vifX.vifstalled = true; + } + } return !vifX.vifstalled; }