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.