diff options
author | Andrey Nazarov <skuller@skuller.net> | 2010-06-11 22:19:00 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2010-06-11 22:19:00 +0000 |
commit | 79fba287e607d1e3d0dfab3aa1d23257111cc787 (patch) | |
tree | a68d62c0b6064ca1276b75a5b4f422980186663e /source/cl_console.c | |
parent | bd091577892489e7d4a2fc83a62dccefababf06b (diff) |
Ported HTTP downloading implementation from R1Q2.
Added ‘--enable-curl’ option to configure script.
Diffstat (limited to 'source/cl_console.c')
-rw-r--r-- | source/cl_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cl_console.c b/source/cl_console.c index 0410a66..c6ddcdb 100644 --- a/source/cl_console.c +++ b/source/cl_console.c @@ -776,7 +776,7 @@ void Con_DrawSolidConsole( void ) { //ZOID // draw the download bar // figure out width - if( cls.download.file ) { + if( cls.download.name[0] ) { int n, j; if( ( text = strrchr( cls.download.name, '/') ) != NULL ) |