move remote.c to input/

This commit is contained in:
twinaphex 2016-05-09 17:37:29 +02:00
parent d57574a2ca
commit 344d1bf949
5 changed files with 4 additions and 4 deletions

View File

@ -987,7 +987,7 @@ ifeq ($(HAVE_NETWORKING), 1)
endif
ifeq ($(HAVE_NETWORK_GAMEPAD), 1)
OBJ += remote.o
OBJ += input/input_remote.o
endif
endif

View File

@ -914,7 +914,7 @@ MENU
#endif
#ifdef HAVE_NETWORK_GAMEPAD
#include "../remote.c"
#include "../input/input_remote.c"
#endif
#include "../command_event.c"

View File

@ -31,7 +31,7 @@
#endif
#ifdef HAVE_NETWORK_GAMEPAD
#include "../remote.h"
#include "input_remote.h"
#endif
static const input_driver_t *input_drivers[] = {

View File

@ -29,7 +29,7 @@
#include <net/net_compat.h>
#include <net/net_socket.h>
#include "remote.h"
#include "input_remote.h"
#include "msg_hash.h"
#include "runloop.h"