Add missing "break" in Memory::GetPointer.
This commit is contained in:
parent
1e39fd825d
commit
5bd3123b2a
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue