summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-12-10 13:02:38 -0500
committerLiam <byteslice@airmail.cc>2022-12-10 13:02:38 -0500
commit985ed1e160d6f5ed32db8087190eba742ed40d78 (patch)
tree4e05523170de2581895eba1cccee28a010712e45 /src/core
parentf6e705737a49ea7e10392181cb2f115ed3543941 (diff)
memory: remove DEBUG_ASSERT pointer test
Diffstat (limited to 'src/core')
-rw-r--r--src/core/memory.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 3141122f1..b3f50223b 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -195,13 +195,11 @@ struct Memory::Impl {
break;
}
case Common::PageType::Memory: {
- DEBUG_ASSERT(pointer);
u8* mem_ptr = pointer + page_offset + (page_index << YUZU_PAGEBITS);
on_memory(copy_amount, mem_ptr);
break;
}
case Common::PageType::DebugMemory: {
- DEBUG_ASSERT(pointer);
u8* const mem_ptr{GetPointerFromDebugMemory(current_vaddr)};
on_memory(copy_amount, mem_ptr);
break;