(360/Xbox 1) Move frontend/main.c to xdk dir

This commit is contained in:
twinaphex 2012-07-16 05:13:30 +02:00
parent 14eb5a53cb
commit 38cde55b78
4 changed files with 6 additions and 6 deletions

View File

@ -230,7 +230,7 @@ REWIND
MAIN
============================================================ */
#if defined(_XBOX)
#include "../../360/frontend-xdk/main.c"
#include "../../xdk/frontend/main.c"
#elif defined(GEKKO)
#include "../../wii/frontend/main.c"
#endif

View File

@ -41,7 +41,7 @@ enum
DPAD_EMULATION_RSTICK
};
#ifdef _XBOX
#ifdef _XBOX360
#include "../360/xinput_360_input.h"
#endif

View File

@ -24,7 +24,6 @@
#include "../driver.h"
#include "../general.h"
#include "../libretro.h"
#include "../input/rarch_xinput2.h"
#include "xinput_xbox_input.h"
static XINPUT_STATE state[4];
@ -34,6 +33,8 @@ bool bInserted[4];
bool bRemoved[4];
XINPUT_CAPABILITIES caps[4];
#define DEADZONE (16000)
static unsigned pads_connected;
static void xinput_input_poll(void *data)

View File

@ -22,17 +22,16 @@
#ifdef _XBOX360
#include <xfilecache.h>
#include "menu.h"
#include "../../360/frontend-xdk/menu.h"
#endif
#include <xbdm.h>
#include "../../360/xinput_360_input.h"
#ifdef _XBOX
#if defined(_XBOX1)
#include "../../xbox1/xdk_d3d8.h"
#elif defined(_XBOX360)
#include "../xdk_d3d9.h"
#include "../../360/xdk_d3d9.h"
#endif
#endif