- 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
This commit is contained in:
ramapcsx2 2010-04-05 22:39:16 +00:00
parent 8da2dc7df9
commit 2cba5ebd33
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}