Remove dumb getPointers that actually want the whole memory block.

The whole memory block is accessable globally anyway. Much
cleaner!
This commit is contained in:
Scott Mansell
2014-10-29 23:51:27 +13:00
parent 089e32ba7d
commit 3e47480470
4 changed files with 7 additions and 5 deletions

View File

@ -241,7 +241,7 @@ void Init(bool hle)
g_ARAM.wii_mode = true;
g_ARAM.size = Memory::EXRAM_SIZE;
g_ARAM.mask = Memory::EXRAM_MASK;
g_ARAM.ptr = Memory::GetPointer(0x10000000);
g_ARAM.ptr = Memory::m_pEXRAM;
}
else
{