add the hash for the PAL v1.1 BIOS

reported on the forums by user hackintoshftw1
This commit is contained in:
BhaaL 2017-03-13 17:51:08 +01:00
parent 70a25bef4c
commit d0d91f2530
1 changed files with 3 additions and 0 deletions

View File

@ -182,6 +182,8 @@ bool CBoot::Load_BS2(const std::string& _rBootROMFilename)
constexpr u32 JAP_v1_1 = 0xD235E3F9; constexpr u32 JAP_v1_1 = 0xD235E3F9;
// Redump // Redump
constexpr u32 PAL_v1_0 = 0x4F319F43; constexpr u32 PAL_v1_0 = 0x4F319F43;
// https://forums.dolphin-emu.org/Thread-ipl-with-unknown-hash-dd8cab7c-problem-caused-by-my-pal-gamecube-bios?pid=435463#pid435463
constexpr u32 PAL_v1_1 = 0xDD8CAB7C;
// Redump // Redump
constexpr u32 PAL_v1_2 = 0xAD1B7F16; constexpr u32 PAL_v1_2 = 0xAD1B7F16;
@ -207,6 +209,7 @@ bool CBoot::Load_BS2(const std::string& _rBootROMFilename)
ipl_region = DiscIO::Region::NTSC_J; ipl_region = DiscIO::Region::NTSC_J;
break; break;
case PAL_v1_0: case PAL_v1_0:
case PAL_v1_1:
case PAL_v1_2: case PAL_v1_2:
ipl_region = DiscIO::Region::PAL; ipl_region = DiscIO::Region::PAL;
break; break;