0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

Buffer_Cache: Implement barriers.

This commit is contained in:
Fernando Sahmkow 2019-07-20 12:18:54 -04:00 committed by FernandoS27
parent 286f4c446a
commit de8ff8a1c6

View File

@ -60,6 +60,10 @@ public:
map->MarkAsWritten(true);
MarkRegionAsWritten(map->GetStart(), map->GetEnd() - 1);
}
} else {
if (map->IsWritten()) {
WriteBarrier();
}
}
const u64 offset = static_cast<u64>(block->GetOffset(cache_addr));