memory: remove DEBUG_ASSERT pointer test

This commit is contained in:
Liam 2022-12-10 13:02:38 -05:00
parent f6e705737a
commit 985ed1e160
1 changed files with 0 additions and 2 deletions

View File

@ -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;