diff options
| author | 2023-01-15 10:24:31 -0500 | |
|---|---|---|
| committer | 2023-01-15 10:24:31 -0500 | |
| commit | f1a0ce0e70bc20d29a2ea5bb4808b5e3466cbc13 (patch) | |
| tree | 944ac5b6fa7591d2b0f921d4b42f4265f8303720 | |
| parent | Merge pull request #9605 from german77/mouse_mapping (diff) | |
| download | yuzu-f1a0ce0e70bc20d29a2ea5bb4808b5e3466cbc13.tar.gz yuzu-f1a0ce0e70bc20d29a2ea5bb4808b5e3466cbc13.tar.xz yuzu-f1a0ce0e70bc20d29a2ea5bb4808b5e3466cbc13.zip | |
memory: fix watchpoint use when fastmem is enabled
| -rw-r--r-- | src/core/memory.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index a1e41faff..4e605fae4 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp | |||
| @@ -383,6 +383,10 @@ struct Memory::Impl { | |||
| 383 | return; | 383 | return; |
| 384 | } | 384 | } |
| 385 | 385 | ||
| 386 | if (Settings::IsFastmemEnabled()) { | ||
| 387 | system.DeviceMemory().buffer.Protect(vaddr, size, !debug, !debug); | ||
| 388 | } | ||
| 389 | |||
| 386 | // Iterate over a contiguous CPU address space, marking/unmarking the region. | 390 | // Iterate over a contiguous CPU address space, marking/unmarking the region. |
| 387 | // The region is at a granularity of CPU pages. | 391 | // The region is at a granularity of CPU pages. |
| 388 | 392 | ||