GS-hw: Purge Evangelion crc hack.

It's broken, HPO special does the job.
Someone should add it to the hw gamefixes.
This commit is contained in:
lightningterror 2022-03-21 17:20:19 +01:00
parent b24a8c70e3
commit 2fedecb809
3 changed files with 0 additions and 18 deletions

View File

@ -222,7 +222,6 @@ const CRC::Game CRC::m_games[] =
{0xDD93DA88, BigMuthaTruckers, JP, 0}, // Bakusou Convoy Densetsu - Otoko Hanamichi America Roman
{0xE169BAF8, RedDeadRevolver, US, 0},
{0xE2E67E23, RedDeadRevolver, EU, 0},
{0xCBB87BF9, EvangelionJo, JP, 0},
{0xC5B75C7C, Oneechanbara2Special, JP, 0},
{0xC725CC6C, Oneechanbara2Special, JP, 0},
{0x07608CA2, Oneechanbara2Special, EU, 0}, // Zombie Hunters 2

View File

@ -31,7 +31,6 @@ public:
DBZBT2,
DBZBT3,
DeathByDegreesTekkenNinaWilliams,
EvangelionJo,
FFX,
FFX2,
FFXII,

View File

@ -237,21 +237,6 @@ bool GSC_IkkiTousen(const GSFrameInfo& fi, int& skip)
return true;
}
bool GSC_EvangelionJo(const GSFrameInfo& fi, int& skip)
{
if (skip == 0)
{
if ((CRC_Aggressive || !s_nativeres) && fi.TME && fi.TBP0 == 0x2BC0 || (fi.FBP == 0 || fi.FBP == 0x1180) && (fi.FPSM | fi.TPSM) == 0)
{
// Don't enable hack on native res if crc is below aggressive.
// Removes blur/glow. Fixes ghosting when resolution is upscaled.
skip = 1;
}
}
return true;
}
bool GSC_Oneechanbara2Special(const GSFrameInfo& fi, int& skip)
{
if (skip == 0)
@ -992,7 +977,6 @@ void GSState::SetupCrcHack()
// Upscaling hacks
lut[CRC::DBZBT3] = GSC_DBZBT3;
lut[CRC::EvangelionJo] = GSC_EvangelionJo;
lut[CRC::FightingBeautyWulong] = GSC_FightingBeautyWulong;
lut[CRC::GodOfWar2] = GSC_GodOfWar2;
lut[CRC::IkkiTousen] = GSC_IkkiTousen;