Revert "Memory GPU <-> CPU: reduce infighting in the texture cache by adding CPU Cached memory."

This commit is contained in:
bunnei 2022-03-26 12:38:30 -07:00 committed by GitHub
parent 94f381d789
commit b149526098
6 changed files with 4 additions and 65 deletions

View file

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