diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 7080b30dc..4c009bbe3 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -176,9 +176,6 @@ T MemorySystem::Read(const VAddr vaddr) { return value; } - // The memory access might do an MMIO or cached access, so we have to lock the HLE kernel state - std::lock_guard lock(HLE::g_hle_lock); - PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; switch (type) { case PageType::Unmapped: @@ -213,9 +210,6 @@ void MemorySystem::Write(const VAddr vaddr, const T data) { return; } - // The memory access might do an MMIO or cached access, so we have to lock the HLE kernel state - std::lock_guard lock(HLE::g_hle_lock); - PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; switch (type) { case PageType::Unmapped: