diff --git a/Makefile.common b/Makefile.common index 55355dc46e..ccdaf3d510 100644 --- a/Makefile.common +++ b/Makefile.common @@ -954,7 +954,7 @@ ifeq ($(HAVE_NETWORKING), 1) OBJ += libretro-common/net/net_compat.o \ libretro-common/net/net_http.o \ libretro-common/net/net_socket.o \ - net_http_special.o \ + network/net_http_special.o \ tasks/task_http.o ifneq ($(HAVE_SOCKET_LEGACY),1) diff --git a/cheevos.c b/cheevos.c index 31a38f4ae3..de23ba515b 100644 --- a/cheevos.c +++ b/cheevos.c @@ -24,7 +24,7 @@ #include "cheevos.h" #include "dynamic.h" #include "libretro.h" -#include "net_http_special.h" +#include "network/net_http_special.h" #include "configuration.h" #include "performance.h" #include "msg_hash.h" diff --git a/griffin/griffin.c b/griffin/griffin.c index 5ab715be78..e6f0a632ec 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -113,7 +113,7 @@ ACHIEVEMENTS #include "../libretro-common/formats/json/jsonsax.c" #include "../libretro-common/utils/md5.c" -#include "../net_http_special.c" +#include "../network/net_http_special.c" #include "../cheevos.c" #endif diff --git a/net_http_special.c b/network/net_http_special.c similarity index 100% rename from net_http_special.c rename to network/net_http_special.c diff --git a/net_http_special.h b/network/net_http_special.h similarity index 100% rename from net_http_special.h rename to network/net_http_special.h