From 61c181431c89cdc1f3dee3df0b261e02158fa58a Mon Sep 17 00:00:00 2001 From: Nayla Hanegan Date: Fri, 23 Aug 2024 21:31:50 -0400 Subject: [PATCH] it builds --- Source/Core/Core/PowerPC/BreakPoints.h | 1 - Source/Core/Core/PowerPC/PowerPC.cpp | 3 --- Source/Core/Core/PowerPC/PowerPC.h | 1 + 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h index 9b07fb53c0..9d663320f1 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.h +++ b/Source/Core/Core/PowerPC/BreakPoints.h @@ -60,7 +60,6 @@ public: using TBreakPoints = std::vector; using TBreakPointsStr = std::vector; - const TBreakPoints& GetBreakPoints() const { return m_breakpoints; } TBreakPointsStr GetStrings() const; void AddFromStrings(const TBreakPointsStr& bp_strings); diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index a701515a9f..0caefa993c 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -267,9 +267,6 @@ void PowerPCManager::Init(CPUCore cpu_core) InitializeCPUCore(cpu_core); m_ppc_state.iCache.Init(); m_ppc_state.dCache.Init(); - - if (Config::Get(Config::MAIN_ENABLE_DEBUGGING)) - m_breakpoints.ClearAllTemporary(); } void PowerPCManager::Reset() diff --git a/Source/Core/Core/PowerPC/PowerPC.h b/Source/Core/Core/PowerPC/PowerPC.h index 662507697e..c3f06b38e9 100644 --- a/Source/Core/Core/PowerPC/PowerPC.h +++ b/Source/Core/Core/PowerPC/PowerPC.h @@ -316,6 +316,7 @@ private: CoreMode m_mode = CoreMode::Interpreter; BreakPoints m_breakpoints; + void ClearAllTemporary(); MemChecks m_memchecks; PPCSymbolDB m_symbol_db; PPCDebugInterface m_debug_interface;