Revert "MemoryManager: use fastmem directly."

This reverts commit 7f18e3bb89.
This commit is contained in:
Merry 2023-01-25 10:12:04 +00:00
parent b292986fc5
commit 6b50650633
3 changed files with 11 additions and 34 deletions

View file

@ -440,7 +440,7 @@ struct Memory::Impl {
}
if (Settings::IsFastmemEnabled()) {
const bool is_read_enable = !Settings::IsGPULevelExtreme() || !cached;
const bool is_read_enable = Settings::IsGPULevelHigh() || !cached;
system.DeviceMemory().buffer.Protect(vaddr, size, is_read_enable, !cached);
}