GSdx: Remove Hummer Badlands CRC Hack.

This commit is contained in:
Christian Kenny 2018-05-15 14:34:07 -04:00 committed by lightningterror
parent 171e7f016d
commit 8b6751943e
3 changed files with 0 additions and 16 deletions

View File

@ -473,7 +473,6 @@ CRC::Game CRC::m_games[] =
{0xF7F181C3, DeathByDegreesTekkenNinaWilliams, CH, 0}, // cutie comment
{0xF088FA5B, DeathByDegreesTekkenNinaWilliams, KO, 0},
{0x59683BB0, DeathByDegreesTekkenNinaWilliams, EU, 0},
{0x449E1F6B, HummerBadlands, US, 0},
{0x5B659BED, Grandia3, JP, 0},
{0x5B657DAD, Grandia3, US, 0},
{0x830B6FB1, TalesofSymphonia, JP, 0},

View File

@ -81,7 +81,6 @@ public:
HarleyDavidson,
HauntingGround,
HeavyMetalThunder,
HummerBadlands,
ICO,
IkkiTousen,
ItadakiStreet,

View File

@ -993,19 +993,6 @@ bool GSC_UltramanFightingEvolution(const GSFrameInfo& fi, int& skip)
return true;
}
bool GSC_HummerBadlands(const GSFrameInfo& fi, int& skip)
{
if(skip == 0)
{
if(fi.TME && (fi.FBP ==0x0a00) && (fi.TBP0 ==0x03200 || fi.TBP0==0x3700) && fi.FPSM == fi.TPSM && fi.TPSM == PSM_PSMCT32)
{
skip = 1;
}
}
return true;
}
bool GSC_TalesofSymphonia(const GSFrameInfo& fi, int& skip)
{
if(skip == 0)
@ -2222,7 +2209,6 @@ void GSState::SetupCrcHack()
lut[CRC::FightingBeautyWulong] = GSC_FightingBeautyWulong;
lut[CRC::Genji] = GSC_Genji;
lut[CRC::GodHand] = GSC_GodHand;
lut[CRC::HummerBadlands] = GSC_HummerBadlands;
lut[CRC::IkkiTousen] = GSC_IkkiTousen;
lut[CRC::KnightsOfTheTemple2] = GSC_KnightsOfTheTemple2;
lut[CRC::Kunoichi] = GSC_Kunoichi;