mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Revert "Remove hack for BREAK in Sol Trigger"
This reverts commit 3d2c3c7227
.
This wasn't a hack dedicated to Sol Trigger. It helps other games, and
keeping it is just like allowing games to continue on bad memory address
reads.
This commit is contained in:
parent
eb33d302f1
commit
abe3d95877
@ -27,6 +27,7 @@
|
||||
#include "MIPSInt.h"
|
||||
#include "MIPSTables.h"
|
||||
#include "Core/Reporting.h"
|
||||
#include "Core/Config.h"
|
||||
|
||||
#include "../HLE/HLE.h"
|
||||
#include "../System.h"
|
||||
@ -191,7 +192,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