DSPHLE: add another Japanese IPL checksum

I'm not actually sure it's version 1.2 but it doesn't really matter
anyway.
This commit is contained in:
Tillmann Karras
2017-06-18 23:50:09 +01:00
parent 3fe8e102fc
commit 69027bc488
2 changed files with 3 additions and 1 deletions

View File

@ -232,6 +232,7 @@ bool CBoot::Load_BS2(const std::string& boot_rom_filename)
constexpr u32 JAP_v1_0 = 0x6DAC1F2A;
// https://bugs.dolphin-emu.org/issues/8936
constexpr u32 JAP_v1_1 = 0xD235E3F9;
constexpr u32 JAP_v1_2 = 0x8BDABBD4;
// Redump
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
@ -258,6 +259,7 @@ bool CBoot::Load_BS2(const std::string& boot_rom_filename)
break;
case JAP_v1_0:
case JAP_v1_1:
case JAP_v1_2:
ipl_region = DiscIO::Region::NTSC_J;
break;
case PAL_v1_0: