From 8155a253c61337fa161caffad4be1e7b9df68058 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 29 Oct 2016 13:14:18 +0200 Subject: [PATCH] EXI_DeviceIPL: Remove old unused code --- Source/Core/Core/HW/EXI_DeviceIPL.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Source/Core/Core/HW/EXI_DeviceIPL.cpp b/Source/Core/Core/HW/EXI_DeviceIPL.cpp index 49be90423e..2208582edf 100644 --- a/Source/Core/Core/HW/EXI_DeviceIPL.cpp +++ b/Source/Core/Core/HW/EXI_DeviceIPL.cpp @@ -430,23 +430,6 @@ u32 CEXIIPL::GetGCTime() } return ((u32)ltime - cJanuary2000); - -#if 0 - // (mb2): I think we can get rid of the IPL bias. - // I know, it's another hack so I let the previous code for a while. - - // Get SRAM bias - u32 Bias; - - for (int i = 0; i < 4; i++) - { - ((u8*)&Bias)[i] = sram_dump[0xc + (i^3)]; - } - - // Get the time ... - u64 ltime = Common::Timer::GetTimeSinceJan1970(); - return ((u32)ltime - cJanuary2000 - Bias); -#endif } u32 CEXIIPL::GetGCTimeJan1970()