summaryrefslogtreecommitdiff
path: root/console.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-09-14 16:30:33 +0000
committertruelight <truelight@openttd.org>2004-09-14 16:30:33 +0000
commit3562d814fb1d01935e3aeaaa8069e20f8d532fc6 (patch)
treef98a6ac43d66b06b91aa0ebdcb878842174f9716 /console.h
parentd48ce392b2569c3d856caf4f069b9bffbf0de9cc (diff)
downloadopenttd-3562d814fb1d01935e3aeaaa8069e20f8d532fc6.tar.xz
(svn r249) -Fix: warning fix in console.c/h (Tron)
Diffstat (limited to 'console.h')
-rw-r--r--console.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/console.h b/console.h
index 72f9ddc49..8be62533f 100644
--- a/console.h
+++ b/console.h
@@ -66,7 +66,7 @@ _iconsole_var * _iconsole_vars; // list of registred vars
// ** console colors ** //
VARDEF byte _iconsole_color_default;
VARDEF byte _iconsole_color_error;
-VARDEF byte _iconsole_color_warning;
+VARDEF byte _iconsole_color_warning;
VARDEF byte _iconsole_color_debug;
VARDEF byte _iconsole_color_commands;
@@ -93,7 +93,7 @@ void IConsoleCmdBufferNavigate(signed char direction);
void IConsolePrint(byte color_code, const byte* string);
void CDECL IConsolePrintF(byte color_code, const char *s, ...);
void IConsoleDebug(byte* string);
-void IConsoleError(const byte* string);
+void IConsoleError(const byte* string);
void IConsoleWarning(const byte* string);
// *** Commands *** //
@@ -115,7 +115,7 @@ void IConsoleVarDump(_iconsole_var * var, const byte * dump_desc);
// *** Parser *** //
-void IConsoleCmdExec(byte * cmdstr);
+void IConsoleCmdExec(const byte* cmdstr);
// ** console std lib ** //
void IConsoleStdLibRegister();