mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-08 11:37:53 +03:00
add the hash for the PAL v1.1 BIOS
reported on the forums by user hackintoshftw1
This commit is contained in:
parent
70a25bef4c
commit
d0d91f2530
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue