mirror of https://github.com/PCSX2/pcsx2.git
gsdx-hw: Purge TimeSplitters2 crc hack.
Not needed anymore. See https://github.com/PCSX2/pcsx2/issues/3568#issuecomment-663927379
This commit is contained in:
parent
91326e1d93
commit
13ff9ab7db
|
@ -293,9 +293,6 @@ CRC::Game CRC::m_games[] =
|
|||
{0x90F0D852, BigMuthaTruckers, US, 0},
|
||||
{0x92624842, BigMuthaTruckers, US, 0},
|
||||
{0xDD93DA88, BigMuthaTruckers, JP, 0}, // Bakusou Convoy Densetsu - Otoko Hanamichi America Roman
|
||||
{0x5CC9BF81, TimeSplitters2, EU, 0},
|
||||
{0x12532F1C, TimeSplitters2, US, 0},
|
||||
{0xC01FD223, TimeSplitters2, KO, 0},
|
||||
{0xEB198738, LordOfTheRingsThirdAge, US, 0},
|
||||
{0x614F4CF4, LordOfTheRingsThirdAge, EU, 0},
|
||||
{0x37CD4279, LordOfTheRingsThirdAge, KO, 0},
|
||||
|
|
|
@ -138,7 +138,6 @@ public:
|
|||
TenchuFS,
|
||||
TenchuWoH,
|
||||
TheIncredibleHulkUD,
|
||||
TimeSplitters2,
|
||||
TombRaiderAnniversary,
|
||||
TombRaiderLegend,
|
||||
TombRaiderUnderworld,
|
||||
|
|
|
@ -421,19 +421,6 @@ bool GSC_SFEX3(const GSFrameInfo& fi, int& skip)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool GSC_TimeSplitters2(const GSFrameInfo& fi, int& skip)
|
||||
{
|
||||
if(skip == 0)
|
||||
{
|
||||
if(fi.TME && (fi.FBP == 0x00000 || fi.FBP == 0x00e00 || fi.FBP == 0x01000) && fi.FPSM == fi.TPSM && (fi.TBP0 == 0x00000 || fi.TBP0 == 0x00e00 || fi.TBP0 == 0x01000) && fi.TPSM == PSM_PSMCT32 && fi.FBMSK == 0x0FF000000)
|
||||
{
|
||||
skip = 1;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool GSC_LordOfTheRingsThirdAge(const GSFrameInfo& fi, int& skip)
|
||||
{
|
||||
if(skip == 0)
|
||||
|
@ -1348,7 +1335,6 @@ void GSState::SetupCrcHack()
|
|||
lut[CRC::SFEX3] = GSC_SFEX3;
|
||||
lut[CRC::TalesOfLegendia] = GSC_TalesOfLegendia;
|
||||
lut[CRC::TalesofSymphonia] = GSC_TalesofSymphonia;
|
||||
lut[CRC::TimeSplitters2] = GSC_TimeSplitters2;
|
||||
lut[CRC::TombRaiderAnniversary] = GSC_TombRaiderAnniversary;
|
||||
lut[CRC::TombRaiderLegend] = GSC_TombRaiderLegend;
|
||||
lut[CRC::TombRaiderUnderworld] = GSC_TombRaiderUnderWorld;
|
||||
|
|
Loading…
Reference in New Issue