mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Merge pull request #1865 from magumagu/getpointer-break
Add missing "break" in Memory::GetPointer.
This commit is contained in:
@ -309,6 +309,7 @@ u8* GetPointer(const u32 address)
|
|||||||
case 0x8:
|
case 0x8:
|
||||||
if ((address & 0xfffffff) < REALRAM_SIZE)
|
if ((address & 0xfffffff) < REALRAM_SIZE)
|
||||||
return m_pRAM + (address & RAM_MASK);
|
return m_pRAM + (address & RAM_MASK);
|
||||||
|
break;
|
||||||
case 0xc:
|
case 0xc:
|
||||||
switch (address >> 24)
|
switch (address >> 24)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user