Rename cl_http.c to curl/download.c and http.h to download.h.

This is more in line with our file structure and other changes that
added functionality to the client.
This commit is contained in:
Yamagi Burmeister 2018-12-12 06:57:58 +01:00
parent c0a6e4270f
commit f0d244e7b4
4 changed files with 4 additions and 4 deletions

View file

@ -680,7 +680,6 @@ CLIENT_OBJS_ := \
src/client/cl_download.o \
src/client/cl_effects.o \
src/client/cl_entities.o \
src/client/cl_http.o \
src/client/cl_input.o \
src/client/cl_inventory.o \
src/client/cl_keyboard.o \
@ -693,6 +692,7 @@ CLIENT_OBJS_ := \
src/client/cl_screen.o \
src/client/cl_tempentities.o \
src/client/cl_view.o \
src/client/curl/download.o \
src/client/curl/qcurl.o \
src/client/input/sdl.o \
src/client/menu/menu.o \

View file

@ -26,8 +26,8 @@
*/
#include <ctype.h>
#include "header/client.h"
#include "curl/header/qcurl.h"
#include "../header/client.h"
#include "header/qcurl.h"
#ifdef USE_CURL

View file

@ -49,12 +49,12 @@
#include "../../common/header/common.h"
#include "../curl/header/download.h"
#include "../sound/header/sound.h"
#include "../sound/header/vorbis.h"
#include "../vid/header/ref.h"
#include "../vid/header/vid.h"
#include "http.h"
#include "screen.h"
#include "keyboard.h"
#include "console.h"