From 6fbd4c4d545679d6dbaf3609fe617412e262c92e Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sat, 10 Dec 2022 22:42:19 +0100 Subject: [PATCH] early-access version 3202 --- README.md | 2 +- src/audio_core/renderer/performance/detail_aspect.h | 1 - src/audio_core/renderer/performance/entry_aspect.h | 1 - src/core/memory.cpp | 2 -- 4 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index bd20b5e87..29fecd305 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3200. +This is the source code for early-access 3202. ## Legal Notice diff --git a/src/audio_core/renderer/performance/detail_aspect.h b/src/audio_core/renderer/performance/detail_aspect.h index e8e1cab7c..279cd623e 100755 --- a/src/audio_core/renderer/performance/detail_aspect.h +++ b/src/audio_core/renderer/performance/detail_aspect.h @@ -16,7 +16,6 @@ class CommandGenerator; */ class DetailAspect { public: - DetailAspect() = default; DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, PerformanceDetailType detail_type); diff --git a/src/audio_core/renderer/performance/entry_aspect.h b/src/audio_core/renderer/performance/entry_aspect.h index 8f7c52b64..8fffb8a95 100755 --- a/src/audio_core/renderer/performance/entry_aspect.h +++ b/src/audio_core/renderer/performance/entry_aspect.h @@ -16,7 +16,6 @@ class CommandGenerator; */ class EntryAspect { public: - EntryAspect() = default; EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); /// Command generator the command will be generated into diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 9e7b28afd..e1e991015 100755 --- 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;