mirror of https://github.com/stella-emu/stella.git
small fix `listbreaks` for single bank ROMs
This commit is contained in:
parent
5042c4635f
commit
bd3545bfff
|
@ -1451,7 +1451,7 @@ void DebuggerParser::executeListbreaks()
|
|||
{
|
||||
if(debugger.breakPoints().check(addr, bank))
|
||||
{
|
||||
if(!bankCount)
|
||||
if(bankCount == 1)
|
||||
{
|
||||
buf << debugger.cartDebug().getLabel(addr, true, 4) << " ";
|
||||
if(!(++count % 8)) buf << endl;
|
||||
|
|
Loading…
Reference in New Issue