Change PanicAlert for _dbg_assert_msg_ in case of PI_RESET_CODE (i122).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1530 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
memberTwo.mb2 2008-12-14 13:55:12 +00:00
parent 03088eee2f
commit b5b43f9408
1 changed files with 1 additions and 5 deletions

View File

@ -148,11 +148,7 @@ void CPeripheralInterface::Write32(const u32 _uValue, const u32 _iAddress)
PanicAlert("The game wants to go to memory card manager. BIOS is being HLE:d - so we can't do that.\n");
break;
default:
{
TCHAR szTemp[256];
sprintf(szTemp, "The game wants to reset the machine. PI_RESET_CODE: (%08x)", _uValue);
PanicAlert(szTemp);
}
_dbg_assert_msg_(PERIPHERALINTERFACE,0,"The game wants to reset the machine. PI_RESET_CODE: (%08x)", _uValue);
break;
}
}