mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't just forget other memchecks, arg.
This commit is contained in:
parent
540bd13222
commit
c64f6c3f39
1 changed files with 2 additions and 2 deletions
|
@ -742,9 +742,9 @@ void Jit::JitSafeMem::MemCheckAsm(ReadType type)
|
|||
for (auto it = memchecks.begin(), end = memchecks.end(); it != end; ++it)
|
||||
{
|
||||
if (!(it->cond & MEMCHECK_READ) && type == MEM_READ)
|
||||
return;
|
||||
continue;
|
||||
if (!(it->cond & MEMCHECK_WRITE) && type == MEM_WRITE)
|
||||
return;
|
||||
continue;
|
||||
|
||||
FixupBranch skipNext, skipNextRange;
|
||||
if (it->end != 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue