early-access version 3317

main
pineappleEA 2023-01-19 21:38:54 +01:00
parent 5b4900d3fe
commit 63ca092a91
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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.