From f73961663ecd0aa53beff84f44a5b46ada5cc3c8 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 18 Jan 2016 04:30:30 -0600 Subject: [PATCH] Fix a typo on the size passed in to the IPL descrambler. Fixes issue #6081 --- Source/Core/Core/HW/EXI_DeviceIPL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }