mirror of https://github.com/PCSX2/pcsx2.git
GSdx: CRC hacks: ICO: moved the cutie extra hack from r5214 to "Aggressive mode".
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5276 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
a74b8e2c7f
commit
faa463b95c
|
@ -487,7 +487,7 @@ bool GSHacksDlg::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
case IDC_AGGRESSIVECRC:
|
case IDC_AGGRESSIVECRC:
|
||||||
helpstr = "Use more aggressive CRC hacks on some games\n\n"
|
helpstr = "Use more aggressive CRC hacks on some games\n\n"
|
||||||
"Only affects few games, removing some effects which might make the image sharper/clearer.\n"
|
"Only affects few games, removing some effects which might make the image sharper/clearer.\n"
|
||||||
"Affected games: FFX, FFX2, GOW2, SoTC, SSX3.";
|
"Affected games: FFX, FFX2, FFXII, GOW2, ICO, SoTC, SSX3.";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
helpstr = "Hover over an item to get a description.";
|
helpstr = "Hover over an item to get a description.";
|
||||||
|
|
|
@ -3111,7 +3111,7 @@ bool GSC_ICO(const GSFrameInfo& fi, int& skip)
|
||||||
{
|
{
|
||||||
skip = 1;
|
skip = 1;
|
||||||
}
|
}
|
||||||
else if(fi.TME && fi.FBP == 0x0800 && (fi.TBP0 == 0x2800 || fi.TBP0 ==0x2c00) && fi.TPSM ==0 && fi.FBMSK == 0)
|
else if( g_aggressive && fi.TME && fi.FBP == 0x0800 && (fi.TBP0 == 0x2800 || fi.TBP0 ==0x2c00) && fi.TPSM ==0 && fi.FBMSK == 0)
|
||||||
{
|
{
|
||||||
skip = 1; //«¼v
|
skip = 1; //«¼v
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue