mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +00:00
Some more info in the memmap getpointer error.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2342 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
df6bfe7662
commit
0c13bf4761
1 changed files with 2 additions and 1 deletions
|
@ -809,11 +809,12 @@ u8 *GetPointer(const u32 _Address)
|
||||||
case 0xCD:
|
case 0xCD:
|
||||||
_dbg_assert_msg_(MEMMAP, 0, "Memory", "GetPointer from IO Bridge doesnt work");
|
_dbg_assert_msg_(MEMMAP, 0, "Memory", "GetPointer from IO Bridge doesnt work");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
//case 0x47: TODO
|
||||||
case 0x7B:
|
case 0x7B:
|
||||||
case 0xFF:
|
case 0xFF:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (!PanicYesNo("unknown pointer address report this to the devs %08x\n Continue?", (_Address >> 24)))
|
if (!PanicYesNo("Unknown pointer address prefix %02X, report this to the devs: 0x%08X \n Continue?", (_Address >> 24), _Address))
|
||||||
Crash();
|
Crash();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue