mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
Avoid an unlikely error in breakpoint listing.
This commit is contained in:
parent
72f8f9addd
commit
83b8e564cf
@ -320,6 +320,8 @@ void CtrlBreakpointList::reloadBreakpoints()
|
||||
{
|
||||
bool isMemory;
|
||||
int index = getBreakpointIndex(i, isMemory);
|
||||
if (index < 0)
|
||||
continue;
|
||||
|
||||
if (isMemory)
|
||||
SetCheckState(i,(displayedMemChecks_[index].result & MEMCHECK_BREAK) != 0);
|
||||
|
Loading…
Reference in New Issue
Block a user