mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-02-02 12:32:04 +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())
|
if (pPathFileName.empty())
|
||||||
return nSymbolsLoaded;
|
return nSymbolsLoaded;
|
||||||
|
|
||||||
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %13s"
|
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %51s"
|
||||||
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%13s %x"
|
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%51s %x"
|
||||||
|
|
||||||
FILE *hFile = fopen( pPathFileName.c_str(), "rt" );
|
FILE *hFile = fopen( pPathFileName.c_str(), "rt" );
|
||||||
|
|
||||||
|
@ -128,7 +128,8 @@
|
|||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
// raised from 13 to 31 for Contiki
|
// raised from 13 to 31 for Contiki
|
||||||
MAX_SYMBOLS_LEN = 31
|
// raised from 31 to 51 (GH#1342)
|
||||||
|
MAX_SYMBOLS_LEN = 51
|
||||||
};
|
};
|
||||||
|
|
||||||
// Bookmarks ______________________________________________________________________________________
|
// Bookmarks ______________________________________________________________________________________
|
||||||
|
Loading…
x
Reference in New Issue
Block a user