diff options
Diffstat (limited to 'src/console_gui.cpp')
-rw-r--r-- | src/console_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console_gui.cpp b/src/console_gui.cpp index 757251f26..875e78d05 100644 --- a/src/console_gui.cpp +++ b/src/console_gui.cpp @@ -489,8 +489,8 @@ static void IConsoleHistoryNavigate(int direction) * @param colour_code the colour of the command. Red in case of errors, etc. * @param str the message entered or output on the console (notice, error, etc.) */ -void IConsoleGUIPrint(ConsoleColour colour_code, char *str) +void IConsoleGUIPrint(TextColour colour_code, char *str) { - new IConsoleLine(str, (TextColour)colour_code); + new IConsoleLine(str, colour_code); SetWindowDirty(WC_CONSOLE, 0); } |