From a6671645d69fb054bb07b3ba2d782b5abce764bf Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Tue, 28 Oct 2014 23:58:54 +1300 Subject: [PATCH] Remove commented out EFB arena code. --- Source/Core/Core/HW/Memmap.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Source/Core/Core/HW/Memmap.cpp b/Source/Core/Core/HW/Memmap.cpp index 52290a4dbd..4c59a642ce 100644 --- a/Source/Core/Core/HW/Memmap.cpp +++ b/Source/Core/Core/HW/Memmap.cpp @@ -69,7 +69,6 @@ u8* m_pRAM; u8* m_pL1Cache; u8* m_pEXRAM; u8* m_pFakeVMEM; -//u8* m_pEFB; // 64-bit: Pointers to high-mem mirrors // 32-bit: Same as above @@ -79,7 +78,6 @@ static u8* m_pVirtualUncachedRAM; static u8* m_pPhysicalEXRAM; // wii only static u8* m_pVirtualCachedEXRAM; // wii only static u8* m_pVirtualUncachedEXRAM; // wii only -//u8* m_pVirtualEFB; static u8* m_pVirtualL1Cache; u8* m_pVirtualFakeVMEM; @@ -126,9 +124,7 @@ static const MemoryView views[] = // Don't map any memory for the EFB. We want all access to this area to go // through the hardware access handlers. -#if _ARCH_32 -// {&m_pEFB, &m_pVirtualEFB, 0xC8000000, EFB_SIZE, 0}, -#endif + {&m_pL1Cache, &m_pVirtualL1Cache, 0xE0000000, L1_CACHE_SIZE, 0}, {&m_pFakeVMEM, &m_pVirtualFakeVMEM, 0x7E000000, FAKEVMEM_SIZE, MV_FAKE_VMEM}, @@ -170,7 +166,6 @@ void DoState(PointerWrap &p) { bool wii = SConfig::GetInstance().m_LocalCoreStartupParameter.bWii; p.DoArray(m_pPhysicalRAM, RAM_SIZE); - //p.DoArray(m_pVirtualEFB, EFB_SIZE); p.DoArray(m_pVirtualL1Cache, L1_CACHE_SIZE); p.DoMarker("Memory RAM"); if (bFakeVMEM)