mirror of
https://github.com/libretro/ppsspp.git
synced 2025-03-04 06:28:03 +00:00
Don't just forget other memchecks, arg.
This commit is contained in:
parent
540bd13222
commit
c64f6c3f39
@ -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…
x
Reference in New Issue
Block a user