Remove hack for BREAK in Sol Trigger

This commit is contained in:
raven02 2013-06-26 19:27:36 +08:00
parent 4eb458ede5
commit 3d2c3c7227

View File

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