mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 16:07:58 -05:00
MaxwellDMA: Don't flush the outputs of a dma copy.
This commit is contained in:
@ -683,7 +683,7 @@ 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());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user