mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-10 08:55:12 +00:00
Qt: some cleanup in debugger
This commit is contained in:
parent
b3fb6d7d18
commit
ba45daff35
13 changed files with 82 additions and 96 deletions
|
|
@ -1,20 +1,18 @@
|
|||
#include "breakpoint_handler.h"
|
||||
|
||||
extern void ppu_breakpoint(u32 loc, bool isAdding);
|
||||
extern void ppu_breakpoint(u32 loc, bool is_adding);
|
||||
|
||||
breakpoint_handler::breakpoint_handler() :m_breakpoints()
|
||||
breakpoint_handler::breakpoint_handler()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
breakpoint_handler::~breakpoint_handler()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool breakpoint_handler::HasBreakpoint(u32 loc) const
|
||||
{
|
||||
return m_breakpoints.find(loc) != m_breakpoints.end();
|
||||
return m_breakpoints.contains(loc);
|
||||
}
|
||||
|
||||
bool breakpoint_handler::AddBreakpoint(u32 loc)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue