summaryrefslogtreecommitdiff
path: root/src/core/memory.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-23 15:10:02 -0400
committerGravatar bunnei2018-03-23 15:10:02 -0400
commit1a158dfcd660058d2f87cb6eb4662861db203386 (patch)
tree3d6e4fed024ba3943de79b01ab005e83bcc6bd96 /src/core/memory.cpp
parentrasterizer: Flush and invalidate regions should be 64-bit. (diff)
downloadyuzu-1a158dfcd660058d2f87cb6eb4662861db203386.tar.gz
yuzu-1a158dfcd660058d2f87cb6eb4662861db203386.tar.xz
yuzu-1a158dfcd660058d2f87cb6eb4662861db203386.zip
memory: RasterizerFlushVirtualRegion should also check process image region.
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r--src/core/memory.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index d8aab7090..fd5a57022 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -329,6 +329,7 @@ void RasterizerFlushVirtualRegion(VAddr start, u64 size, FlushMode mode) {
329 } 329 }
330 }; 330 };
331 331
332 CheckRegion(PROCESS_IMAGE_VADDR, PROCESS_IMAGE_VADDR_END);
332 CheckRegion(HEAP_VADDR, HEAP_VADDR_END); 333 CheckRegion(HEAP_VADDR, HEAP_VADDR_END);
333} 334}
334 335