1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

Rename netplay/ to network/

This commit is contained in:
twinaphex 2016-05-09 17:43:38 +02:00
parent 344d1bf949
commit 3722826e0a
11 changed files with 8 additions and 8 deletions

View File

@ -974,7 +974,7 @@ ifeq ($(HAVE_NETWORKING), 1)
ifeq ($(HAVE_NETPLAY), 1)
DEFINES += -DHAVE_NETPLAY -DHAVE_NETWORK_CMD -DHAVE_NETWORK_GAMEPAD
OBJ += netplay/netplay_net.o netplay/netplay_spectate.o netplay/netplay_common.o netplay/netplay.o
OBJ += network/netplay_net.o network/netplay_spectate.o network/netplay_common.o network/netplay.o
endif
# Retro Achievements (also depends on threads)

View File

@ -59,7 +59,7 @@
#endif
#ifdef HAVE_NETPLAY
#include "netplay/netplay.h"
#include "network/netplay.h"
#endif
#ifdef HAVE_NETWORKING

View File

@ -36,7 +36,7 @@
#include "audio/audio_driver.h"
#ifdef HAVE_NETPLAY
#include "netplay/netplay.h"
#include "network/netplay.h"
#endif
static struct retro_core_t core;

View File

@ -785,10 +785,10 @@ THREAD
NETPLAY
============================================================ */
#ifdef HAVE_NETPLAY
#include "../netplay/netplay_net.c"
#include "../netplay/netplay_spectate.c"
#include "../netplay/netplay_common.c"
#include "../netplay/netplay.c"
#include "../network/netplay_net.c"
#include "../network/netplay_spectate.c"
#include "../network/netplay_common.c"
#include "../network/netplay.c"
#include "../libretro-common/net/net_compat.c"
#include "../libretro-common/net/net_socket.c"
#include "../libretro-common/net/net_http.c"

View File

@ -63,7 +63,7 @@
#endif
#ifdef HAVE_NETPLAY
#include "netplay/netplay.h"
#include "network/netplay.h"
#endif
#include "verbosity.h"