mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-30 08:50:33 +00:00
Ignore MIPS break error
This commit is contained in:
parent
218c891eef
commit
39c3cf8744
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user