Just rephrase something :)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6538 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2010-12-07 05:59:18 +00:00
parent 2caa685c7f
commit 908273d5f4
1 changed files with 2 additions and 1 deletions

View File

@ -632,7 +632,8 @@ u8 *GetPointer(const u32 _Address)
}
else
{
if (!Core::g_CoreStartupParameter.bMMU && !PanicYesNo("Unknown pointer address prefix %02X, report this to the devs: 0x%08X \n Continue?", (_Address >> 24), _Address))
if (!Core::g_CoreStartupParameter.bMMU &&
!PanicYesNo("Unknown pointer %#08x\nContinue?", _Address))
Crash();
return 0;
}