From 2cba5ebd338f9f84d565befdf8495e3d3012d37c Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Mon, 5 Apr 2010 22:39:16 +0000 Subject: [PATCH] GSdx: - Disabling all post processing removal hacks for Shadow of the Colossus. Can't see what they fix(ed). git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2815 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/GSState.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index a8f991e380..242615b06e 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -2043,7 +2043,8 @@ bool GSC_BullyCC(const GSFrameInfo& fi, int& skip) } bool GSC_SoTC(const GSFrameInfo& fi, int& skip) { - if(skip == 0) + // Not needed anymore? What did it fix anyway? (rama) + /*if(skip == 0) { if(fi.TME && fi.FBP == 0x02b80 && fi.FPSM == PSM_PSMCT24 && fi.TBP0 == 0x01e80 && fi.TPSM == PSM_PSMCT24) { @@ -2057,7 +2058,7 @@ bool GSC_SoTC(const GSFrameInfo& fi, int& skip) { skip = 8; } - } + }*/ return true; }