Debugger: Cleanup add symbol

This commit is contained in:
michaelangel007 2023-06-06 09:23:35 -07:00
parent 677ba8ffb3
commit 1d4d1291f3
1 changed files with 9 additions and 5 deletions

View File

@ -877,10 +877,14 @@ void SymbolUpdate( SymbolTable_Index_e eSymbolTable, const char *pSymbolName, WO
g_aSymbols[ eSymbolTable ][ nAddress ] = pSymbolName;
// Tell user symbol was added
ConsolePrintFormat( " Added symbol: %s%s%s %s$%s%04X%s"
, CHC_SYMBOL, pSymbolName, CHC_DEFAULT
, CHC_ARG_SEP
, CHC_ADDRESS, nAddress, CHC_DEFAULT
ConsolePrintFormat(
/*CHC_DEFAULT*/ " Added symbol: "
CHC_SYMBOL "%s"
CHC_DEFAULT " "
CHC_ARG_SEP "$"
CHC_ADDRESS "%04X"
, pSymbolName
, nAddress
);
}
}