mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
(Xbox 1) build fix
This commit is contained in:
parent
bfb933d98d
commit
5087d9f69c
@ -26,10 +26,6 @@
|
|||||||
#include "retroarch_console.h"
|
#include "retroarch_console.h"
|
||||||
#include "../file.h"
|
#include "../file.h"
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include "../compat/posix_string.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define MAX_ARGS 32
|
#define MAX_ARGS 32
|
||||||
|
|
||||||
default_paths_t default_paths;
|
default_paths_t default_paths;
|
||||||
|
@ -17,6 +17,10 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include "../compat/posix_string.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "../general.h"
|
#include "../general.h"
|
||||||
|
|
||||||
#include "console_settings.h"
|
#include "console_settings.h"
|
||||||
|
@ -86,6 +86,7 @@ static void xinput_input_poll(void *data)
|
|||||||
{
|
{
|
||||||
XINPUT_STATE state[4];
|
XINPUT_STATE state[4];
|
||||||
XINPUT_CAPABILITIES caps[4];
|
XINPUT_CAPABILITIES caps[4];
|
||||||
|
(void)caps;
|
||||||
real_state[i] = 0;
|
real_state[i] = 0;
|
||||||
// handle removed devices
|
// handle removed devices
|
||||||
bRemoved[i] = (dwRemovals & (1<<i)) ? true : false;
|
bRemoved[i] = (dwRemovals & (1<<i)) ? true : false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user