summaryrefslogtreecommitdiffstats
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-01 21:02:20 +0100
committerGitHub <noreply@github.com>2024-01-01 21:02:20 +0100
commit15cf34cd628851a673dec37fe7146a1488a70014 (patch)
treea9010922b2072eea8cc1b6701e6a549afd7c8749 /src/core/memory.h
parentMerge pull request #12536 from german77/npad_interface (diff)
parentVulkan: Only recreate swapchain if the frame is bigger than the swap image. (diff)
downloadyuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar.gz
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar.bz2
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar.lz
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar.xz
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.tar.zst
yuzu-15cf34cd628851a673dec37fe7146a1488a70014.zip
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index 3e4d03f57..dddfaf4a4 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -686,7 +686,8 @@ public:
} else {
this->m_memory.WriteBlockUnsafe(this->m_addr, this->data(), this->size_bytes());
}
- } else if constexpr (FLAGS & GuestMemoryFlags::Safe) {
+ } else if constexpr ((FLAGS & GuestMemoryFlags::Safe) ||
+ (FLAGS & GuestMemoryFlags::Cached)) {
this->m_memory.InvalidateRegion(this->m_addr, this->size_bytes());
}
}