From cca0ca3d707221fcb08f5ba0216a93ee73dc8e45 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 17 Oct 2010 17:50:40 +0000 Subject: (svn r20977) -Fix (r20975): compilation didn't get to the link stage if you, or config.lib, decided you don't need network support --- src/console.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/console.cpp') diff --git a/src/console.cpp b/src/console.cpp index a578008e5..922385202 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -112,7 +112,9 @@ void IConsolePrint(ConsoleColour colour_code, const char *string) str_validate(str, str + strlen(str)); if (_network_dedicated) { +#ifdef ENABLE_NETWORK NetworkAdminConsole("console", str); +#endif /* ENABLE_NETWORK */ fprintf(stdout, "%s%s\n", GetLogPrefix(), str); fflush(stdout); IConsoleWriteToLogFile(str); -- cgit v1.2.3-54-g00ecf