mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2025-08-09 17:11:09 +00:00
"Merge Tagged PR 12955"
This commit is contained in:
parent
fe6934593f
commit
ee4802a948
|
@ -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 a new issue