From d490b794e93cbd5ab6d6777f66c37ef2b7347a2f Mon Sep 17 00:00:00 2001 From: Kelvin Lee Date: Thu, 21 Apr 2022 00:21:30 +1000 Subject: [PATCH] Fix per review --- source/Debugger/Debugger_Symbols.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/Debugger/Debugger_Symbols.cpp b/source/Debugger/Debugger_Symbols.cpp index b2aad5e9..20cfade4 100644 --- a/source/Debugger/Debugger_Symbols.cpp +++ b/source/Debugger/Debugger_Symbols.cpp @@ -76,8 +76,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Utils _ ________________________________________________________________________________________ std::string _CmdSymbolsInfoHeader( int iTable, int nDisplaySize = 0 ); - void _PrintCurrentPath(); - Update_t _PrintSymbolInvalidTable(); + void _PrintCurrentPath(); + Update_t _PrintSymbolInvalidTable(); // Private ________________________________________________________________________________________ @@ -317,8 +317,11 @@ Update_t CmdSymbolsInfo (int nArgs) bDisplaySymbolTables = (1 << iWhichTable); } + //sprintf( sText, " Symbols Main: %s%d%s User: %s%d%s Source: %s%d%s" + // "Main:# Basic:# Asm:# User1:# User2:# Src1:# Src2:# Dos:# Prodos:# + std::string const sIndent = " "; - std::string sText = sIndent; // Indent new line + std::string sText = sIndent; // Indent new line for ( int iTable = 0, bTable = 1; bTable <= bDisplaySymbolTables; iTable++, bTable <<= 1 ) {