Accuracy Normal: reduce accuracy further for perf improvements in Project Lime

This commit is contained in:
Fernando Sahmkow 2023-04-22 11:59:57 +02:00
parent fca72beb2d
commit 7e76c1642c
4 changed files with 11 additions and 5 deletions

View file

@ -462,7 +462,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);
}