Memory: Don't protect reads on Normal accuracy.

This commit is contained in:
Fernando Sahmkow 2022-03-24 21:54:48 +01:00
parent 7a9d9e575b
commit a2d7b2f905

View File

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