From 63ca092a91f3796594470c14612a2bdfa0b68623 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Thu, 19 Jan 2023 21:38:54 +0100 Subject: [PATCH] early-access version 3317 --- README.md | 2 +- src/core/memory.cpp | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e78629349..8ec839d4d 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3316. +This is the source code for early-access 3317. ## Legal Notice diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 47858220b..3b0b1a9d6 100755 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -383,6 +383,10 @@ struct Memory::Impl { return; } + if (Settings::IsFastmemEnabled()) { + system.DeviceMemory().buffer.Protect(vaddr, size, !debug, !debug); + } + // Iterate over a contiguous CPU address space, marking/unmarking the region. // The region is at a granularity of CPU pages.