Debugger: QoL for bpchange when no args

This commit is contained in:
michaelangel007 2023-03-23 08:06:02 -07:00
parent f97531c5c0
commit a767763486
1 changed files with 4 additions and 1 deletions

View File

@ -1896,7 +1896,10 @@ Update_t CmdBreakpointEnable (int nArgs) {
Update_t CmdBreakpointChange (int nArgs)
{
if (! g_nBreakpoints)
return ConsoleDisplayError("There are no (PC) Breakpoints defined.");
{
ConsolePrintFormat( "There are no " CHC_CATEGORY "PC" CHC_DEFAULT " Breakpoints defined." );
return ConsoleDisplayError( "" );
}
if (nArgs != 2)
return Help_Arg_1( CMD_BREAKPOINT_CHANGE );