mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Core/Boot: Fix unused variable warning.
This commit is contained in:
parent
ac76deaef0
commit
00544e4dff
1 changed files with 0 additions and 2 deletions
|
@ -425,7 +425,6 @@ bool CBoot::Load_BS2(Core::System& system, const std::string& boot_rom_filename)
|
||||||
const u32 ipl_hash = Common::ComputeCRC32(data.data(), data.size());
|
const u32 ipl_hash = Common::ComputeCRC32(data.data(), data.size());
|
||||||
bool known_ipl = false;
|
bool known_ipl = false;
|
||||||
bool pal_ipl = false;
|
bool pal_ipl = false;
|
||||||
bool triforce_ipl = false;
|
|
||||||
switch (ipl_hash)
|
switch (ipl_hash)
|
||||||
{
|
{
|
||||||
case NTSC_v1_0:
|
case NTSC_v1_0:
|
||||||
|
@ -442,7 +441,6 @@ bool CBoot::Load_BS2(Core::System& system, const std::string& boot_rom_filename)
|
||||||
break;
|
break;
|
||||||
case Triforce:
|
case Triforce:
|
||||||
known_ipl = true;
|
known_ipl = true;
|
||||||
triforce_ipl = true;
|
|
||||||
default:
|
default:
|
||||||
PanicAlertFmtT("The IPL file is not a known good dump. (CRC32: {0:x})", ipl_hash);
|
PanicAlertFmtT("The IPL file is not a known good dump. (CRC32: {0:x})", ipl_hash);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue