Ignore MIPS break error

This commit is contained in:
raven02 2013-04-09 16:13:24 +08:00
parent 218c891eef
commit 39c3cf8744

View File

@ -25,6 +25,7 @@
#include "MIPSInt.h"
#include "MIPSTables.h"
#include "Core/Reporting.h"
#include "Core/Config.h"
#include "../HLE/HLE.h"
#include "../System.h"
@ -194,7 +195,8 @@ namespace MIPSInt
{
Reporting::ReportMessage("BREAK instruction hit");
ERROR_LOG(CPU, "BREAK!");
Core_UpdateState(CORE_STEPPING);
if (!g_Config.bIgnoreBadMemAccess)
Core_UpdateState(CORE_STEPPING);
PC += 4;
}