From d22e46c9afdaf65a06ed0836d4f7e2b9e689e4d9 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sun, 15 Nov 2009 14:33:18 +0000 Subject: * Fix GetNews when USE_CURL is undefined --- src/client/cl_ui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/client/cl_ui.c b/src/client/cl_ui.c index 1ba367de..d1a37bf2 100644 --- a/src/client/cl_ui.c +++ b/src/client/cl_ui.c @@ -119,13 +119,13 @@ qboolean GetNews( qboolean begin ) } if( !finished ) strcpy( clc.newsString, "Retrieving..." ); + Cvar_Set( "cl_newsString", clc.newsString ); + return finished; #else Cvar_Set( "cl_newsString", "^1You must compile your client with CURL support to use this feature" ); return qtrue; #endif - Cvar_Set( "cl_newsString", clc.newsString ); - return finished; } /* -- cgit