mirror of https://github.com/PCSX2/pcsx2.git
Gsdx: Adjust GSC_Oneechanbara2Special (Zombie Hunters 2) crc hack.
Add a few crc ids (ntsc-j and eu). Adjust hack, crc hack won't be active on native res if crc level is below Aggressive state. Issue #2007
This commit is contained in:
parent
11ddfefb60
commit
9994111173
|
@ -362,6 +362,8 @@ CRC::Game CRC::m_games[] =
|
|||
{0x73C560BA, FinalFightStreetwise, EU, 0},
|
||||
{0xCBB87BF9, EvangelionJo, JP, 0}, // cutie comment
|
||||
{0xC5B75C7C, Oneechanbara2Special, JP, 0}, // cutie comment
|
||||
{0xC725CC6C, Oneechanbara2Special, JP, 0},
|
||||
{0x07608CA2, Oneechanbara2Special, EU, 0}, // Zombie Hunters 2
|
||||
{0xC0659AD1, NarutimateAccel, JP, 0}, // cutie comment
|
||||
{0xF3D9DFBE, NarutimateAccel, JP, 0},
|
||||
{0x59739DDE, Naruto, JP, 0}, // cutie comment
|
||||
|
|
|
@ -347,9 +347,11 @@ bool GSC_Oneechanbara2Special(const GSFrameInfo& fi, int& skip)
|
|||
{
|
||||
if(skip == 0)
|
||||
{
|
||||
if(fi.TPSM == PSM_PSMCT24 && fi.TME && fi.FBP == 0x01180)
|
||||
if((Aggressive || !s_nativeres) && fi.TPSM == PSM_PSMCT24 && fi.TME && fi.FBP == 0x01180)
|
||||
{
|
||||
skip = 1; // Ghosting
|
||||
// Don't enable hack on native res if crc is below aggressive.
|
||||
// Ghosting upscaling issue, bottom and right red lines also by upscaling.
|
||||
skip = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue