diff options
| author | Tilka <tilkax@gmail.com> | 2025-04-23 03:26:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-23 03:26:48 +0100 |
| commit | 871073eee2fd154db09c64dd69719b572a9cf052 (patch) | |
| tree | dcbdc2cdf33745b51570372bfe93dd5447599d67 /Source | |
| parent | 31a3de819d7d8d5cc6a39cd3f835ad0dac7f70a7 (diff) | |
| parent | 00544e4dff252456784d69f84d241c962d5f57a5 (diff) | |
Merge pull request #13564 from jordan-woyak/triforce_ipl-warning
Core/Boot: Fix unused variable warning.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/Boot/Boot.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index e95984f122..a23d605a53 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -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()); bool known_ipl = false; bool pal_ipl = false; - bool triforce_ipl = false; switch (ipl_hash) { case NTSC_v1_0: @@ -442,7 +441,6 @@ bool CBoot::Load_BS2(Core::System& system, const std::string& boot_rom_filename) break; case Triforce: known_ipl = true; - triforce_ipl = true; default: PanicAlertFmtT("The IPL file is not a known good dump. (CRC32: {0:x})", ipl_hash); break; |
