mirror of https://github.com/PCSX2/pcsx2.git
GS-hw: Purge WildArms4 and WildArms5 crc hacks.
Issue got resolved before 1.6 release.
This commit is contained in:
parent
96bc6807ae
commit
a95250cabb
|
@ -138,13 +138,6 @@ const CRC::Game CRC::m_games[] =
|
||||||
{0x32A1C752, GT4, US, 0}, // GT4 Online Beta
|
{0x32A1C752, GT4, US, 0}, // GT4 Online Beta
|
||||||
{0x2A84A1E2, GT4, US, 0}, // Mazda MX-5 Edition
|
{0x2A84A1E2, GT4, US, 0}, // Mazda MX-5 Edition
|
||||||
{0x0087EEC4, GT4, NoRegion, 0}, // JP and US versions have the same CRC - GT4 Online Beta
|
{0x0087EEC4, GT4, NoRegion, 0}, // JP and US versions have the same CRC - GT4 Online Beta
|
||||||
{0xC1640D2C, WildArms5, US, 0},
|
|
||||||
{0x0FCF8FE4, WildArms5, EU, 0},
|
|
||||||
{0x2294D322, WildArms5, JP, 0},
|
|
||||||
{0x565B6170, WildArms4, JP, 0}, // Wild Arms: The 4th Detonator
|
|
||||||
{0xBBC3EFFA, WildArms4, US, 0},
|
|
||||||
{0xBBC396EC, WildArms4, US, 0}, // hmm such a small diff in the CRC..
|
|
||||||
{0x7B2DE9CC, WildArms4, EU, 0},
|
|
||||||
{0x8B029334, Manhunt2, EU, 0},
|
{0x8B029334, Manhunt2, EU, 0},
|
||||||
{0x3B0ADBEF, Manhunt2, US, 0},
|
{0x3B0ADBEF, Manhunt2, US, 0},
|
||||||
{0x09F49E37, CrashBandicootWoC, NoRegion, 0},
|
{0x09F49E37, CrashBandicootWoC, NoRegion, 0},
|
||||||
|
|
|
@ -139,8 +139,6 @@ public:
|
||||||
UrbanReign,
|
UrbanReign,
|
||||||
ValkyrieProfile2,
|
ValkyrieProfile2,
|
||||||
Whiplash,
|
Whiplash,
|
||||||
WildArms4,
|
|
||||||
WildArms5,
|
|
||||||
XenosagaE3,
|
XenosagaE3,
|
||||||
Yakuza,
|
Yakuza,
|
||||||
Yakuza2,
|
Yakuza2,
|
||||||
|
|
|
@ -129,26 +129,6 @@ bool GSC_GodOfWar2(const GSFrameInfo& fi, int& skip)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GSC_WildArmsGames(const GSFrameInfo& fi, int& skip)
|
|
||||||
{
|
|
||||||
if (skip == 0)
|
|
||||||
{
|
|
||||||
if (fi.TME && fi.FBP == 0x03100 && fi.FPSM == PSM_PSMZ32 && fi.TBP0 == 0x01c00 && fi.TPSM == PSM_PSMZ32)
|
|
||||||
{
|
|
||||||
skip = 100;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (fi.TME && fi.FBP == 0x00e00 && fi.FPSM == PSM_PSMCT32 && fi.TBP0 == 0x02a00 && fi.TPSM == PSM_PSMCT32)
|
|
||||||
{
|
|
||||||
skip = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Channel effect not properly supported yet
|
// Channel effect not properly supported yet
|
||||||
bool GSC_Manhunt2(const GSFrameInfo& fi, int& skip)
|
bool GSC_Manhunt2(const GSFrameInfo& fi, int& skip)
|
||||||
{
|
{
|
||||||
|
@ -1028,8 +1008,6 @@ void GSState::SetupCrcHack()
|
||||||
lut[CRC::TombRaiderLegend] = GSC_TombRaiderLegend;
|
lut[CRC::TombRaiderLegend] = GSC_TombRaiderLegend;
|
||||||
lut[CRC::TombRaiderUnderworld] = GSC_TombRaiderUnderWorld;
|
lut[CRC::TombRaiderUnderworld] = GSC_TombRaiderUnderWorld;
|
||||||
lut[CRC::UrbanReign] = GSC_UrbanReign;
|
lut[CRC::UrbanReign] = GSC_UrbanReign;
|
||||||
lut[CRC::WildArms4] = GSC_WildArmsGames;
|
|
||||||
lut[CRC::WildArms5] = GSC_WildArmsGames;
|
|
||||||
lut[CRC::ZettaiZetsumeiToshi2] = GSC_ZettaiZetsumeiToshi2;
|
lut[CRC::ZettaiZetsumeiToshi2] = GSC_ZettaiZetsumeiToshi2;
|
||||||
|
|
||||||
// Channel Effect
|
// Channel Effect
|
||||||
|
|
Loading…
Reference in New Issue