mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-20 09:19:48 +00:00
it builds
This commit is contained in:
parent
d08c3b9026
commit
61c181431c
3 changed files with 1 additions and 4 deletions
|
@ -60,7 +60,6 @@ public:
|
||||||
|
|
||||||
using TBreakPoints = std::vector<TBreakPoint>;
|
using TBreakPoints = std::vector<TBreakPoint>;
|
||||||
using TBreakPointsStr = std::vector<std::string>;
|
using TBreakPointsStr = std::vector<std::string>;
|
||||||
|
|
||||||
const TBreakPoints& GetBreakPoints() const { return m_breakpoints; }
|
const TBreakPoints& GetBreakPoints() const { return m_breakpoints; }
|
||||||
TBreakPointsStr GetStrings() const;
|
TBreakPointsStr GetStrings() const;
|
||||||
void AddFromStrings(const TBreakPointsStr& bp_strings);
|
void AddFromStrings(const TBreakPointsStr& bp_strings);
|
||||||
|
|
|
@ -267,9 +267,6 @@ void PowerPCManager::Init(CPUCore cpu_core)
|
||||||
InitializeCPUCore(cpu_core);
|
InitializeCPUCore(cpu_core);
|
||||||
m_ppc_state.iCache.Init();
|
m_ppc_state.iCache.Init();
|
||||||
m_ppc_state.dCache.Init();
|
m_ppc_state.dCache.Init();
|
||||||
|
|
||||||
if (Config::Get(Config::MAIN_ENABLE_DEBUGGING))
|
|
||||||
m_breakpoints.ClearAllTemporary();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PowerPCManager::Reset()
|
void PowerPCManager::Reset()
|
||||||
|
|
|
@ -316,6 +316,7 @@ private:
|
||||||
CoreMode m_mode = CoreMode::Interpreter;
|
CoreMode m_mode = CoreMode::Interpreter;
|
||||||
|
|
||||||
BreakPoints m_breakpoints;
|
BreakPoints m_breakpoints;
|
||||||
|
void ClearAllTemporary();
|
||||||
MemChecks m_memchecks;
|
MemChecks m_memchecks;
|
||||||
PPCSymbolDB m_symbol_db;
|
PPCSymbolDB m_symbol_db;
|
||||||
PPCDebugInterface m_debug_interface;
|
PPCDebugInterface m_debug_interface;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue