gsdx: Purge depth crc hack for GSC_RadiataStories.

Effects rendered correctly, blur/ghosting upscaling issues can be
resolved with HPO special.
This commit is contained in:
lightningterror 2019-02-25 11:35:27 +01:00
parent ffe6587e62
commit 8a9abd8a1b
1 changed files with 1 additions and 6 deletions

View File

@ -1189,14 +1189,9 @@ bool GSC_RadiataStories(const GSFrameInfo& fi, int& skip)
{
if(skip == 0)
{
if(fi.TME && fi.FPSM == fi.TPSM && fi.TPSM == PSM_PSMCT16 && fi.FBMSK == 0x03FFF)
{
skip = 1; // CMV vertical stripes
}
else if(fi.TME && fi.FBP == fi.TBP0 && fi.FPSM == PSM_PSMCT32 && fi.TPSM == PSM_PSMT4HH)
if(fi.TME && fi.FBP == fi.TBP0 && fi.FPSM == PSM_PSMCT32 && fi.TPSM == PSM_PSMT4HH)
{
// GH: Hack is quite similar to GSC_StarOcean3. It is potentially the same issue.
// Fixed on openGL
skip = 1000;
}
}