Codechange: replace IConsolePrintF with IConsolePrint and fmt formatting

Also make some strings more consistent with the rest of the console strings.
This commit is contained in:
rubidium42
2021-06-12 21:33:01 +02:00
committed by rubidium42
parent d9c1d18f2b
commit eb6cdadc4d
9 changed files with 97 additions and 120 deletions

View File

@@ -46,8 +46,6 @@ static inline void IConsolePrint(TextColour colour_code, const T &format, A firs
IConsolePrint(colour_code, fmt::format(format, first_arg, other_args...));
}
void CDECL IConsolePrintF(TextColour colour_code, const char *format, ...) WARN_FORMAT(2, 3);
/* Parser */
void IConsoleCmdExec(const char *cmdstr, const uint recurse_count = 0);