mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Merge pull request #1865 from magumagu/getpointer-break
Add missing "break" in Memory::GetPointer.
This commit is contained in:
commit
e32d63c43d
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue