Fixed: Debugger 2.9.0.14: HELP JSR

This commit is contained in:
michaelangel007 2018-04-17 07:16:21 -07:00
parent 8a9ddda46a
commit 9105019e11
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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 _________________________________________________________________________________________

View File

@ -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: