Add missing "break" in Memory::GetPointer.

This commit is contained in:
magumagu 2015-01-09 22:47:45 -08:00
parent 1e39fd825d
commit 5bd3123b2a
1 changed files with 1 additions and 0 deletions

View File

@ -309,6 +309,7 @@ u8* GetPointer(const u32 address)
case 0x8:
if ((address & 0xfffffff) < REALRAM_SIZE)
return m_pRAM + (address & RAM_MASK);
break;
case 0xc:
switch (address >> 24)
{