From c0a8d09ca72873bbbef14dd317cbd29319e54640 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 9 Feb 2009 02:57:15 +0000 Subject: (svn r15428) -Codechange: consistently use colour instead of having both color and colour. --- src/console_gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/console_gui.cpp') diff --git a/src/console_gui.cpp b/src/console_gui.cpp index 30de4f58b..ba7980fdc 100644 --- a/src/console_gui.cpp +++ b/src/console_gui.cpp @@ -437,11 +437,11 @@ static void IConsoleHistoryNavigate(int direction) * as well as to a logfile. If the network server is a dedicated server, all activities * are also logged. All lines to print are added to a temporary buffer which can be * used as a history to print them onscreen - * @param color_code the colour of the command. Red in case of errors, etc. + * @param colour_code the colour of the command. Red in case of errors, etc. * @param string the message entered or output on the console (notice, error, etc.) */ -void IConsoleGUIPrint(ConsoleColour color_code, char *str) +void IConsoleGUIPrint(ConsoleColour colour_code, char *str) { - new IConsoleLine(str, (TextColour)color_code); + new IConsoleLine(str, (TextColour)colour_code); SetWindowDirty(FindWindowById(WC_CONSOLE, 0)); } -- cgit v1.2.3-54-g00ecf