BufferBase: Don't ignore GPU pages.

This commit is contained in:
Fernando Sahmkow 2023-01-05 06:43:54 -05:00
parent 91e1c7a727
commit d777ec15f8
8 changed files with 22 additions and 23 deletions

View file

@ -97,7 +97,7 @@ public:
VideoCommon::CacheType which = VideoCommon::CacheType::All) = 0;
virtual void InnerInvalidation(std::span<const std::pair<VAddr, std::size_t>> sequences) {
for (const auto [cpu_addr, size] : sequences) {
for (const auto& [cpu_addr, size] : sequences) {
InvalidateRegion(cpu_addr, size);
}
}