===========================================================================
| 433 | |
| 434 | //=========================================================================== |
| 435 | Update_t CmdMOTD( int nArgs ) // Message Of The Day |
| 436 | { |
| 437 | #if DEBUG_COLOR_CONSOLE |
| 438 | ConsolePrint( "`" ); |
| 439 | ConsolePrint( "`A" ); |
| 440 | ConsolePrint( "`2`A" ); |
| 441 | #endif |
| 442 | |
| 443 | ConsolePrint( "`9`A`7 Apple `9][ ][+ //e `7Emulator for Windows (TM) `9`@" ); |
| 444 | |
| 445 | CmdVersion(0); |
| 446 | CmdSymbols(0); |
| 447 | ConsoleColorizePrintFormat( " '%sCtrl ~'%s console, '%s%s'%s (specific), '%s%s'%s (all)" |
| 448 | , CHC_KEY |
| 449 | , CHC_DEFAULT |
| 450 | , CHC_COMMAND |
| 451 | , g_aCommands[ CMD_HELP_SPECIFIC ].m_sName |
| 452 | , CHC_DEFAULT |
| 453 | // , g_aCommands[ CMD_HELP_SPECIFIC ].pHelpSummary |
| 454 | , CHC_COMMAND |
| 455 | , g_aCommands[ CMD_HELP_LIST ].m_sName |
| 456 | , CHC_DEFAULT |
| 457 | // , g_aCommands[ CMD_HELP_LIST ].pHelpSummary |
| 458 | ); |
| 459 | |
| 460 | ConsoleUpdate(); |
| 461 | |
| 462 | return UPDATE_ALL; |
| 463 | } |
| 464 | |
| 465 | |
| 466 | // Help on specific command |
no test coverage detected