diff options
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: | |||
| 686 | } else { | 686 | } else { |
| 687 | this->m_memory.WriteBlockUnsafe(this->m_addr, this->data(), this->size_bytes()); | 687 | this->m_memory.WriteBlockUnsafe(this->m_addr, this->data(), this->size_bytes()); |
| 688 | } | 688 | } |
| 689 | } else if constexpr (FLAGS & GuestMemoryFlags::Safe) { | 689 | } else if constexpr ((FLAGS & GuestMemoryFlags::Safe) || |
| 690 | (FLAGS & GuestMemoryFlags::Cached)) { | ||
| 690 | this->m_memory.InvalidateRegion(this->m_addr, this->size_bytes()); | 691 | this->m_memory.InvalidateRegion(this->m_addr, this->size_bytes()); |
| 691 | } | 692 | } |
| 692 | } | 693 | } |