mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't skip memcheck'd op when illegal reads is off.
This commit is contained in:
parent
9d8bdee089
commit
8ee88ae5a2
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ void Jit::JitSafeMem::Finish()
|
|||
{
|
||||
// Memory::Read_U32/etc. may have tripped coreState.
|
||||
if (needsCheck_ && !g_Config.bIgnoreBadMemAccess)
|
||||
jit_->js.afterOp = JitState::AFTER_CORE_STATE;
|
||||
jit_->js.afterOp |= JitState::AFTER_CORE_STATE;
|
||||
if (needsSkip_)
|
||||
jit_->SetJumpTarget(skip_);
|
||||
for (auto it = skipChecks_.begin(), end = skipChecks_.end(); it != end; ++it)
|
||||
|
|
Loading…
Add table
Reference in a new issue