summaryrefslogtreecommitdiff
path: root/src/console_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-01-03 12:01:41 +0000
committerrubidium <rubidium@openttd.org>2011-01-03 12:01:41 +0000
commitb25cf57542dbf294a9de3f7a9910e1e08e6ed7a4 (patch)
treeac208841735480e0c06b3da6da55b33a1bbdc7c7 /src/console_func.h
parent1c2d56d314d5be9d228b08ca6eea8d988f2a389f (diff)
downloadopenttd-b25cf57542dbf294a9de3f7a9910e1e08e6ed7a4.tar.xz
(svn r21701) -Codechange: ConsoleColour = TextColour, so make it that way and remove some unneeded casts
Diffstat (limited to 'src/console_func.h')
-rw-r--r--src/console_func.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console_func.h b/src/console_func.h
index 8f674bb6b..aa220a998 100644
--- a/src/console_func.h
+++ b/src/console_func.h
@@ -23,8 +23,8 @@ void IConsoleFree();
void IConsoleClose();
/* console output */
-void IConsolePrint(ConsoleColour colour_code, const char *string);
-void CDECL IConsolePrintF(ConsoleColour colour_code, const char *format, ...) WARN_FORMAT(2, 3);
+void IConsolePrint(TextColour colour_code, const char *string);
+void CDECL IConsolePrintF(TextColour colour_code, const char *format, ...) WARN_FORMAT(2, 3);
void IConsoleDebug(const char *dbg, const char *string);
void IConsoleWarning(const char *string);
void IConsoleError(const char *string);