diff --git a/README.md b/README.md index fbc814b6b..dd6590bbd 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2615. +This is the source code for early-access 2616. ## Legal Notice diff --git a/src/core/hle/kernel/k_page_table.cpp b/src/core/hle/kernel/k_page_table.cpp index 1a94ed5ec..599013cf6 100755 --- a/src/core/hle/kernel/k_page_table.cpp +++ b/src/core/hle/kernel/k_page_table.cpp @@ -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, KMemoryAttribute::None); - // Invalidate CPU cache, as code may have been patched by the guest app. - system.InvalidateCpuInstructionCaches(); - return ResultSuccess; }