summaryrefslogtreecommitdiff
path: root/src/console_func.h
diff options
context:
space:
mode:
authorrubidium42 <rubidium@openttd.org>2021-06-12 21:33:01 +0200
committerrubidium42 <rubidium42@users.noreply.github.com>2021-06-13 15:25:31 +0200
commiteb6cdadc4dad9de62abbd31c410050ae150935b1 (patch)
tree9abf6cf90bec474fcf226c15d6f85dbbbed04551 /src/console_func.h
parentd9c1d18f2bde32fe615fbe6ad088fbce1e2b82bf (diff)
downloadopenttd-eb6cdadc4dad9de62abbd31c410050ae150935b1.tar.xz
Codechange: replace IConsolePrintF with IConsolePrint and fmt formatting
Also make some strings more consistent with the rest of the console strings.
Diffstat (limited to 'src/console_func.h')
-rw-r--r--src/console_func.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/console_func.h b/src/console_func.h
index f48fa8f54..36227bc56 100644
--- a/src/console_func.h
+++ b/src/console_func.h
@@ -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);