GS: CRC hack for Black

This commit is contained in:
Connor McLaughlin 2022-09-20 00:29:57 +10:00 committed by refractionpcsx2
parent 4470379dfb
commit 84bea96941
3 changed files with 7 additions and 0 deletions

View File

@ -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},

View File

@ -26,6 +26,7 @@ public:
AceCombat4,
ArTonelico2,
BigMuthaTruckers,
Black,
BurnoutGames,
CrashBandicootWoC,
DBZBT2,

View File

@ -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)