Rename netplay_compat.* to net_compat.*

This commit is contained in:
Higor Eurípedes 2015-01-27 20:16:08 -03:00
parent cef42b9356
commit 41a48b8ac8
8 changed files with 7 additions and 7 deletions

View File

@ -623,7 +623,7 @@ endif
ifeq ($(HAVE_NETPLAY), 1) ifeq ($(HAVE_NETPLAY), 1)
DEFINES += -DHAVE_NETPLAY -DHAVE_NETWORK_CMD DEFINES += -DHAVE_NETPLAY -DHAVE_NETWORK_CMD
OBJ += netplay.o \ OBJ += netplay.o \
netplay_compat.o \ net_compat.o \
net_http.o net_http.o
ifneq ($(findstring Win32,$(OS)),) ifneq ($(findstring Win32,$(OS)),)
LIBS += -lws2_32 LIBS += -lws2_32

View File

@ -16,8 +16,8 @@
#include "command.h" #include "command.h"
#include "net_compat.h"
#if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY) #if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY)
#include "netplay_compat.h"
#include "netplay.h" #include "netplay.h"
#endif #endif

View File

@ -661,7 +661,7 @@ NETPLAY
============================================================ */ ============================================================ */
#ifdef HAVE_NETPLAY #ifdef HAVE_NETPLAY
#include "../netplay.c" #include "../netplay.c"
#include "../netplay_compat.c" #include "../net_compat.c"
#include "../net_http.c" #include "../net_http.c"
#endif #endif

View File

@ -35,7 +35,7 @@
#include <string.h> #include <string.h>
#ifndef GEKKO #ifndef GEKKO
#include "../../netplay_compat.h" #include "../../net_compat.h"
#endif #endif
#include "logger.h" #include "logger.h"

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "netplay_compat.h" #include "net_compat.h"
#include "netplay.h" #include "netplay.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -18,7 +18,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <ctype.h> #include <ctype.h>
#include "netplay_compat.h" #include "net_compat.h"
#include <compat/strl.h> #include <compat/strl.h>
enum enum

View File

@ -18,7 +18,7 @@
#pragma comment(lib, "ws2_32") #pragma comment(lib, "ws2_32")
#endif #endif
#include "netplay_compat.h" #include "net_compat.h"
#include "netplay.h" #include "netplay.h"
#include "general.h" #include "general.h"
#include "autosave.h" #include "autosave.h"