Collections of changes to facilitate compilation on Linux and macOS. (PR #992)

This commit is contained in:
Andrea
2021-10-18 20:23:46 +01:00
committed by GitHub
parent 9553106f4e
commit f2843d4d71
9 changed files with 19 additions and 7 deletions

View File

@@ -1066,11 +1066,11 @@ Update_t CmdHelpSpecific (int nArgs)
// Config - Load / Save
case CMD_CONFIG_LOAD:
ConsoleColorizePrint( sText, " Usage: [\"filename\"]" );
ConsoleBufferPushFormat( sText, " Load debugger configuration from '%s', or the specificed file.", g_sFileNameConfig );
ConsoleBufferPushFormat( sText, " Load debugger configuration from '%s', or the specificed file.", g_sFileNameConfig.c_str() );
break;
case CMD_CONFIG_SAVE:
ConsoleColorizePrint( sText, " Usage: [\"filename\"]" );
ConsoleBufferPushFormat( sText, " Save debugger configuration to '%s', or the specificed file.", g_sFileNameConfig );
ConsoleBufferPushFormat( sText, " Save debugger configuration to '%s', or the specificed file.", g_sFileNameConfig.c_str() );
break;
// Config - Color
case CMD_CONFIG_COLOR: