Revert "MemoryManager: use fastmem directly."

This reverts commit af5ecb0b15.
This commit is contained in:
Merry 2023-01-25 10:12:04 +00:00
parent 44b981fd3e
commit dc7ab4c5d6
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);
}