From 9105019e11e25567896c540d97730a4ac3d0520f Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Tue, 17 Apr 2018 07:16:21 -0700 Subject: [PATCH] Fixed: Debugger 2.9.0.14: HELP JSR --- docs/Debugger_Changelog.txt | 1 + source/Debugger/Debug.cpp | 2 +- source/Debugger/Debugger_Help.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/Debugger_Changelog.txt b/docs/Debugger_Changelog.txt index 2f23a8e2..980c4ab5 100644 --- a/docs/Debugger_Changelog.txt +++ b/docs/Debugger_Changelog.txt @@ -1,4 +1,5 @@ /* +.14 Fixed: HELP JSR wasn't color-coding syntax. .13 Added: PROFILE LIST now shows how many clock cycles were executed. .12 GH-PR#480: GH#462: Default to Shift+Left Click to toggle disasm columns diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index d3cb6c91..4cfb3f98 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -49,7 +49,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define ALLOW_INPUT_LOWERCASE 1 // See /docs/Debugger_Changelog.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,9,0,13); + const int DEBUGGER_VERSION = MAKE_VERSION(2,9,0,14); // Public _________________________________________________________________________________________ diff --git a/source/Debugger/Debugger_Help.cpp b/source/Debugger/Debugger_Help.cpp index 6e6c19c4..01bdedaa 100644 --- a/source/Debugger/Debugger_Help.cpp +++ b/source/Debugger/Debugger_Help.cpp @@ -899,7 +899,7 @@ Update_t CmdHelpSpecific (int nArgs) ConsolePrintFormat( sText, "%s G[G] C600 F000:FFFF", CHC_EXAMPLE ); break; case CMD_JSR: - ConsoleColorizePrint( sText, " %sUsage%s: %s[symbol | address]" ); + ConsoleColorizePrint( sText, " Usage: [symbol | address]" ); ConsoleBufferPush( " Pushes PC on stack; calls the named subroutine." ); break; case CMD_NOP: