it builds

This commit is contained in:
Nayla Hanegan 2024-08-23 21:31:50 -04:00
commit 61c181431c
3 changed files with 1 additions and 4 deletions

View file

@ -60,7 +60,6 @@ public:
using TBreakPoints = std::vector<TBreakPoint>;
using TBreakPointsStr = std::vector<std::string>;
const TBreakPoints& GetBreakPoints() const { return m_breakpoints; }
TBreakPointsStr GetStrings() const;
void AddFromStrings(const TBreakPointsStr& bp_strings);

View file

@ -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()

View file

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