diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2016-01-18 04:30:30 -0600 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2016-01-18 04:30:30 -0600 |
| commit | f73961663ecd0aa53beff84f44a5b46ada5cc3c8 (patch) | |
| tree | 924d26b1717b4f28faf6e91a83b4e8db01619fca /Source | |
| parent | 24c228c6e9c73acceb6a7d74d51211865b80b67e (diff) | |
Fix a typo on the size passed in to the IPL descrambler.
Fixes issue #6081
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/HW/EXI_DeviceIPL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/EXI_DeviceIPL.cpp b/Source/Core/Core/HW/EXI_DeviceIPL.cpp index 223c33b8ff..acbc09f6a8 100644 --- a/Source/Core/Core/HW/EXI_DeviceIPL.cpp +++ b/Source/Core/Core/HW/EXI_DeviceIPL.cpp @@ -108,7 +108,7 @@ CEXIIPL::CEXIIPL() : // Load whole ROM dump LoadFileToIPL(SConfig::GetInstance().m_strBootROM, 0); // Descramble the encrypted section (contains BS1 and BS2) - Descrambler(m_pIPL + 0x100, 0x1aff00); + Descrambler(m_pIPL + 0x100, 0x1afe00); INFO_LOG(BOOT, "Loaded bootrom: %s", m_pIPL); // yay for null-terminated strings ;p } |
