mirror of https://github.com/PCSX2/pcsx2.git
gsdx:hack: add a CRC for SuperMan
Extracted from the GS dump
This commit is contained in:
parent
95e1cd9ea8
commit
e1144d7a18
|
@ -508,6 +508,7 @@ CRC::Game CRC::m_games[] =
|
|||
{0x48AC09BC, SteambotChronicles, EU, 0},
|
||||
{0x9F391882, SteambotChronicles, US, 0},
|
||||
{0xFEFCF9DE, SteambotChronicles, JP, 0}, // Ponkotsu Roman Daikatsugeki: Bumpy Trot
|
||||
{0XE1BF5DCA, SuperMan, NoRegion, 0},
|
||||
{0x06A7506A, SacredBlaze, JP, 0},
|
||||
};
|
||||
|
||||
|
|
|
@ -172,6 +172,7 @@ public:
|
|||
UrbanReign,
|
||||
SteambotChronicles,
|
||||
SacredBlaze,
|
||||
SuperMan,
|
||||
TitleCount,
|
||||
};
|
||||
|
||||
|
|
|
@ -639,8 +639,7 @@ GSRendererHW::Hacks::Hacks()
|
|||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::SpyroEternalNight, CRC::RegionCount, &GSRendererHW::OI_SpyroEternalNight));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::TalesOfLegendia, CRC::RegionCount, &GSRendererHW::OI_TalesOfLegendia));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::SMTNocturne, CRC::RegionCount, &GSRendererHW::OI_SMTNocturne));
|
||||
// FIXME someone need to add some CRC
|
||||
//m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::SuperMan, CRC::RegionCount, &GSRendererHW::OI_SuperMan));
|
||||
m_oi_list.push_back(HackEntry<OI_Ptr>(CRC::SuperMan, CRC::RegionCount, &GSRendererHW::OI_SuperMan));
|
||||
|
||||
m_oo_list.push_back(HackEntry<OO_Ptr>(CRC::DBZBT2, CRC::RegionCount, &GSRendererHW::OO_DBZBT2));
|
||||
m_oo_list.push_back(HackEntry<OO_Ptr>(CRC::MajokkoALaMode2, CRC::RegionCount, &GSRendererHW::OO_MajokkoALaMode2));
|
||||
|
|
Loading…
Reference in New Issue