mirror of https://github.com/stella-emu/stella.git
Make 'listtraps' less verbose (fixes #157).
This commit is contained in:
parent
7f2b6a8983
commit
10c53bce89
|
@ -1102,8 +1102,9 @@ void DebuggerParser::executeListtraps()
|
||||||
{
|
{
|
||||||
if(debugger.readTrap(i) || debugger.writeTrap(i))
|
if(debugger.readTrap(i) || debugger.writeTrap(i))
|
||||||
{
|
{
|
||||||
commandResult << trapStatus(i) << endl;
|
commandResult << trapStatus(i) << " + mirrors" << endl;
|
||||||
count++;
|
count++;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue