mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2024-12-24 12:31:20 -08:00
Merge yuzu-emu#12955
This commit is contained in:
parent
ca12a3e156
commit
be01abb494
@ -65,7 +65,8 @@ void StandardVmCallbacks::MemoryWriteUnsafe(VAddr address, const void* data, u64
|
||||
return;
|
||||
}
|
||||
|
||||
if (system.ApplicationMemory().WriteBlock(address, data, size)) {
|
||||
if (system.ApplicationMemory().WriteBlock(address, data, size) &&
|
||||
system.ApplicationProcess()->Is64Bit()) {
|
||||
Core::InvalidateInstructionCacheRange(system.ApplicationProcess(), address, size);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user