diff options
author | liamwhite <[email protected]> | 2024-01-01 15:02:20 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-01 15:02:20 -0500 |
commit | 15cf34cd628851a673dec37fe7146a1488a70014 (patch) | |
tree | a9010922b2072eea8cc1b6701e6a549afd7c8749 /src/core/memory.h | |
parent | 59d81ae614a42588dbd7eaf4b7e029ab168886c9 (diff) | |
parent | 737e6e531c8eb155fcbd19ddd679336332bbc8c6 (diff) | |
download | yuzu-mainline-15cf34cd628851a673dec37fe7146a1488a70014.tar.gz yuzu-mainline-15cf34cd628851a673dec37fe7146a1488a70014.zip |
Merge pull request #12543 from FernandoS27/stop-liking-posts-from-ur-friends-ex
VideoCore: A few fixes to DMA and swapchain
Diffstat (limited to 'src/core/memory.h')
-rw-r--r-- | src/core/memory.h | 3 |
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()); } } |