mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-23 08:33:24 +00:00
Debugger: Increase symbol length from 31 to 51 chars
This commit is contained in:
parent
000b546613
commit
3fb6839458
@ -549,8 +549,8 @@ int ParseSymbolTable(const std::string & pPathFileName, SymbolTable_Index_e eSym
|
||||
if (pPathFileName.empty())
|
||||
return nSymbolsLoaded;
|
||||
|
||||
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %13s"
|
||||
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%13s %x"
|
||||
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %51s"
|
||||
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%51s %x"
|
||||
|
||||
FILE *hFile = fopen( pPathFileName.c_str(), "rt" );
|
||||
|
||||
|
@ -128,7 +128,8 @@
|
||||
enum
|
||||
{
|
||||
// raised from 13 to 31 for Contiki
|
||||
MAX_SYMBOLS_LEN = 31
|
||||
// raised from 31 to 51 (GH#1342)
|
||||
MAX_SYMBOLS_LEN = 51
|
||||
};
|
||||
|
||||
// Bookmarks ______________________________________________________________________________________
|
||||
|
Loading…
x
Reference in New Issue
Block a user