Change: do not print the '-' in front of help messages and make help messages more uniform

This commit is contained in:
rubidium42
2021-06-12 21:37:19 +02:00
committed by rubidium42
parent eb6cdadc4d
commit 75afd25e16
2 changed files with 132 additions and 141 deletions

View File

@@ -267,7 +267,7 @@ static void IConsoleAliasExec(const IConsoleAlias *alias, byte tokencount, char
if (param < 0 || param >= tokencount) {
IConsolePrint(CC_ERROR, "Too many or wrong amount of parameters passed to alias.");
IConsolePrint(CC_HELP, "Usage of alias '{}': {}", alias->name, alias->cmdline);
IConsolePrint(CC_HELP, "Usage of alias '{}': '{}'.", alias->name, alias->cmdline);
return;
}