early-access version 2616

main
pineappleEA 2022-03-29 01:40:16 +02:00
parent 613446086b
commit ee18761256
2 changed files with 1 additions and 4 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 2615. This is the source code for early-access 2616.
## Legal Notice ## Legal Notice

View File

@ -563,9 +563,6 @@ ResultCode KPageTable::UnmapProcessMemory(VAddr dst_addr, std::size_t size,
block_manager->Update(dst_addr, num_pages, KMemoryState::Free, KMemoryPermission::None, block_manager->Update(dst_addr, num_pages, KMemoryState::Free, KMemoryPermission::None,
KMemoryAttribute::None); KMemoryAttribute::None);
// Invalidate CPU cache, as code may have been patched by the guest app.
system.InvalidateCpuInstructionCaches();
return ResultSuccess; return ResultSuccess;
} }