From 4bdbb5b08572d741210dfd30fe7b2310fb532301 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Wed, 2 Sep 2015 10:44:21 -0700 Subject: [PATCH] Fixed CLI run command --- modules/pcjs/lib/debugger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/pcjs/lib/debugger.js b/modules/pcjs/lib/debugger.js index c203c1102..96e67ff06 100644 --- a/modules/pcjs/lib/debugger.js +++ b/modules/pcjs/lib/debugger.js @@ -6421,8 +6421,8 @@ if (DEBUGGER) { this.parseAddrOptions(dbgAddr, sOptions); this.setTempBreakpoint(dbgAddr); } - if (!fQuiet && !this.runCPU(true)) { - this.println('cpu busy or unavailable, command ignored'); + if (!this.runCPU(true)) { + if (!fQuiet) this.println("cpu busy or unavailable, run command ignored"); } };