Chaoscode fix for last commit.

If anyone understands why it made any difference do tell me... it seems both should just return null..



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2181 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-02-09 19:26:14 +00:00
parent 2ff2852771
commit 59a8fd4848
1 changed files with 15 additions and 14 deletions

View File

@ -784,7 +784,6 @@ u8 *GetPointer(const u32 _Address)
case 0x11:
case 0x12:
case 0x13:
case 0x7B:
case 0x90:
case 0x91:
case 0x92:
@ -810,7 +809,9 @@ u8 *GetPointer(const u32 _Address)
case 0xCD:
_dbg_assert_msg_(MEMMAP, 0, "Memory", "GetPointer from IO Bridge doesnt work");
return NULL;
case 0xFF: break;
case 0x7B:
case 0xFF:
break;
default:
if (!PanicYesNo("unknown pointer address report this to the devs %08x\n Continue?", (_Address >> 24)))
Crash();