Cleanup: remove IConsoleWarning/IConsoleError helpers

Both did not support format parameters, so in many places IConsolePrint(CC_ERROR, "message") was used with a style different from what IConsoleError would do.
This commit is contained in:
rubidium42
2021-06-12 21:09:58 +02:00
committed by rubidium42
parent efd4ba4797
commit b280a3a0ed
2 changed files with 0 additions and 22 deletions

View File

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