diff options
| -rw-r--r-- | src/audio_core/renderer/performance/detail_aspect.h | 1 | ||||
| -rw-r--r-- | src/audio_core/renderer/performance/entry_aspect.h | 1 | ||||
| -rw-r--r-- | src/core/memory.cpp | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/src/audio_core/renderer/performance/detail_aspect.h b/src/audio_core/renderer/performance/detail_aspect.h index ee4ac2f76..736c331b9 100644 --- a/src/audio_core/renderer/performance/detail_aspect.h +++ b/src/audio_core/renderer/performance/detail_aspect.h | |||
| @@ -16,7 +16,6 @@ class CommandGenerator; | |||
| 16 | */ | 16 | */ |
| 17 | class DetailAspect { | 17 | class DetailAspect { |
| 18 | public: | 18 | public: |
| 19 | DetailAspect() = default; | ||
| 20 | DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, | 19 | DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, |
| 21 | PerformanceDetailType detail_type); | 20 | PerformanceDetailType detail_type); |
| 22 | 21 | ||
diff --git a/src/audio_core/renderer/performance/entry_aspect.h b/src/audio_core/renderer/performance/entry_aspect.h index 01c1eb3f1..14c9e3baf 100644 --- a/src/audio_core/renderer/performance/entry_aspect.h +++ b/src/audio_core/renderer/performance/entry_aspect.h | |||
| @@ -16,7 +16,6 @@ class CommandGenerator; | |||
| 16 | */ | 16 | */ |
| 17 | class EntryAspect { | 17 | class EntryAspect { |
| 18 | public: | 18 | public: |
| 19 | EntryAspect() = default; | ||
| 20 | EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); | 19 | EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); |
| 21 | 20 | ||
| 22 | /// Command generator the command will be generated into | 21 | /// Command generator the command will be generated into |
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 { | |||
| 195 | break; | 195 | break; |
| 196 | } | 196 | } |
| 197 | case Common::PageType::Memory: { | 197 | case Common::PageType::Memory: { |
| 198 | DEBUG_ASSERT(pointer); | ||
| 199 | u8* mem_ptr = pointer + page_offset + (page_index << YUZU_PAGEBITS); | 198 | u8* mem_ptr = pointer + page_offset + (page_index << YUZU_PAGEBITS); |
| 200 | on_memory(copy_amount, mem_ptr); | 199 | on_memory(copy_amount, mem_ptr); |
| 201 | break; | 200 | break; |
| 202 | } | 201 | } |
| 203 | case Common::PageType::DebugMemory: { | 202 | case Common::PageType::DebugMemory: { |
| 204 | DEBUG_ASSERT(pointer); | ||
| 205 | u8* const mem_ptr{GetPointerFromDebugMemory(current_vaddr)}; | 203 | u8* const mem_ptr{GetPointerFromDebugMemory(current_vaddr)}; |
| 206 | on_memory(copy_amount, mem_ptr); | 204 | on_memory(copy_amount, mem_ptr); |
| 207 | break; | 205 | break; |