mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-26 06:20:48 +00:00
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:
parent
c0a6e4270f
commit
f0d244e7b4
4 changed files with 4 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue