Преглед на файлове

memory: fix watchpoint use when fastmem is enabled

Liam преди 3 години
родител
ревизия
f1a0ce0e70
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      src/core/memory.cpp

+ 4 - 0
src/core/memory.cpp

@@ -383,6 +383,10 @@ struct Memory::Impl {
             return;
         }
 
+        if (Settings::IsFastmemEnabled()) {
+            system.DeviceMemory().buffer.Protect(vaddr, size, !debug, !debug);
+        }
+
         // Iterate over a contiguous CPU address space, marking/unmarking the region.
         // The region is at a granularity of CPU pages.