Browse Source
Merge pull request #9417 from liamwhite/debug-assert
memory: remove DEBUG_ASSERT pointer test
pull/15/merge
Mai
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
2 deletions
-
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; |
|
|
|
|