.2 fixed HELP <category> not working

.1 undocumented mnemonics in lowercase
This commit is contained in:
mpohoreski 2006-06-11 20:11:32 +00:00
parent e3c3ead902
commit 496d582f84
2 changed files with 5 additions and 3 deletions

View File

@ -43,7 +43,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// TODO: COLOR LOAD ["filename"]
// See Debugger_Changelong.txt for full details
const int DEBUGGER_VERSION = MAKE_VERSION(2,5,3,0);
const int DEBUGGER_VERSION = MAKE_VERSION(2,5,3,2);
// Public _________________________________________________________________________________________

View File

@ -241,6 +241,7 @@ Update_t CmdHelpSpecific (int nArgs)
if (bCategory)
{
iCommand = g_aArgs[iArg].nVal2;
nFound = 1;
}
if (bAllCommands)
@ -554,8 +555,9 @@ Update_t CmdHelpSpecific (int nArgs)
default:
if (bAllCommands)
break;
#if DEBUG_COMMAND_HELP
wsprintf( sText, "Command help not done yet: %s", g_aCommands[ iCommand ].aName );
//#if DEBUG_COMMAND_HELP
#if _DEBUG
wsprintf( sText, "Command help not done yet: %s", g_aCommands[ iCommand ].m_sName );
ConsoleBufferPush( sText );
#endif
if ((! nFound) || (! pCommand))