mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12:00
Qt: some cleanup in debugger
This commit is contained in:
parent
b3fb6d7d18
commit
ba45daff35
13 changed files with 82 additions and 96 deletions
|
@ -479,7 +479,7 @@ static bool ppu_break(ppu_thread& ppu, ppu_opcode_t)
|
|||
}
|
||||
|
||||
// Set or remove breakpoint
|
||||
extern void ppu_breakpoint(u32 addr, bool isAdding)
|
||||
extern void ppu_breakpoint(u32 addr, bool is_adding)
|
||||
{
|
||||
if (g_cfg.core.ppu_decoder == ppu_decoder_type::llvm)
|
||||
{
|
||||
|
@ -488,7 +488,7 @@ extern void ppu_breakpoint(u32 addr, bool isAdding)
|
|||
|
||||
const u64 _break = reinterpret_cast<uptr>(&ppu_break);
|
||||
|
||||
if (isAdding)
|
||||
if (is_adding)
|
||||
{
|
||||
// Set breakpoint
|
||||
ppu_ref(addr) = _break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue