mirror of https://github.com/PCSX2/pcsx2.git
GS: CRC hack for Black
This commit is contained in:
parent
4470379dfb
commit
84bea96941
|
@ -26,6 +26,10 @@ const CRC::Game CRC::m_games[] =
|
|||
{0xF95F37EE, ArTonelico2, US, 0},
|
||||
{0x68CE6801, ArTonelico2, JP, 0},
|
||||
{0xCE2C1DBF, ArTonelico2, EU, 0},
|
||||
{0x5C891FF1, Black, US, 0},
|
||||
{0xCAA04879, Black, EU, 0},
|
||||
{0xADDFF505, Black, EU, 0},
|
||||
{0xB3A9F9ED, Black, JP, 0},
|
||||
{0x2113EA2E, MetalSlug6, JP, 0},
|
||||
{0xA6167B59, Lamune, JP, 0},
|
||||
{0xA39517AB, FFX, EU, 0},
|
||||
|
|
|
@ -26,6 +26,7 @@ public:
|
|||
AceCombat4,
|
||||
ArTonelico2,
|
||||
BigMuthaTruckers,
|
||||
Black,
|
||||
BurnoutGames,
|
||||
CrashBandicootWoC,
|
||||
DBZBT2,
|
||||
|
|
|
@ -4346,8 +4346,10 @@ GSRendererHW::Hacks::Hacks()
|
|||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::Jak3, CRC::RegionCount, &GSRendererHW::OI_JakGames));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::JakX, CRC::RegionCount, &GSRendererHW::OI_JakGames));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::BurnoutGames, CRC::RegionCount, &GSRendererHW::OI_BurnoutGames));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::Black, CRC::RegionCount, &GSRendererHW::OI_BurnoutGames));
|
||||
|
||||
m_oo_list.push_back(HackEntry<OO_Ptr>(CRC::BurnoutGames, CRC::RegionCount, &GSRendererHW::OO_BurnoutGames));
|
||||
m_oo_list.push_back(HackEntry<OO_Ptr>(CRC::Black, CRC::RegionCount, &GSRendererHW::OO_BurnoutGames));
|
||||
}
|
||||
|
||||
void GSRendererHW::Hacks::SetGameCRC(const CRC::Game& game)
|
||||
|
|
Loading…
Reference in New Issue