Change HAVE_WINXINPUT to HAVE_XINPUT

This commit is contained in:
twinaphex 2015-04-05 20:54:46 +02:00
parent ed9ad7c9d7
commit 592e5d9f4a
6 changed files with 8 additions and 8 deletions

View File

@ -374,8 +374,8 @@ ifeq ($(HAVE_DINPUT), 1)
JOYCONFIG_LIBS += -ldinput8 -ldxguid -lole32 JOYCONFIG_LIBS += -ldinput8 -ldxguid -lole32
endif endif
ifeq ($(HAVE_WINXINPUT), 1) ifeq ($(HAVE_XINPUT), 1)
DEFINES += -DHAVE_WINXINPUT -DHAVE_BUILTIN_AUTOCONFIG DEFINES += -DHAVE_XINPUT -DHAVE_BUILTIN_AUTOCONFIG
OBJ += input/drivers_joypad/xinput_joypad.o \ OBJ += input/drivers_joypad/xinput_joypad.o \
input/autoconf/builtin_win.o input/autoconf/builtin_win.o
endif endif

View File

@ -20,7 +20,7 @@ HAVE_ZLIB_DEFLATE = 1
HAVE_PYTHON = 0 HAVE_PYTHON = 0
DYNAMIC = 1 DYNAMIC = 1
HAVE_WINXINPUT = 1 HAVE_XINPUT = 1
HAVE_SDL := 0 HAVE_SDL := 0
HAVE_SDL2 := 0 HAVE_SDL2 := 0

View File

@ -838,7 +838,7 @@ static BOOL CALLBACK enum_joypad_cb(const DIDEVICEINSTANCE *inst, void *p)
g_pads[g_joypad_cnt].joy_name = strdup(inst->tszProductName); g_pads[g_joypad_cnt].joy_name = strdup(inst->tszProductName);
#ifdef HAVE_WINXINPUT #ifdef HAVE_XINPUT
#if 0 #if 0
is_xinput_pad = g_xinput_block_pads is_xinput_pad = g_xinput_block_pads
&& name_is_xinput_pad(inst->tszProductName); && name_is_xinput_pad(inst->tszProductName);
@ -861,7 +861,7 @@ static BOOL CALLBACK enum_joypad_cb(const DIDEVICEINSTANCE *inst, void *p)
IDirectInputDevice8_EnumObjects(*pad, enum_axes_cb, IDirectInputDevice8_EnumObjects(*pad, enum_axes_cb,
*pad, DIDFT_ABSAXIS); *pad, DIDFT_ABSAXIS);
#ifdef HAVE_WINXINPUT #ifdef HAVE_XINPUT
if (!is_xinput_pad) if (!is_xinput_pad)
#endif #endif
{ {

View File

@ -26,7 +26,7 @@ static rarch_joypad_driver_t *joypad_drivers[] = {
#ifdef __CELLOS_LV2__ #ifdef __CELLOS_LV2__
&ps3_joypad, &ps3_joypad,
#endif #endif
#ifdef HAVE_WINXINPUT #ifdef HAVE_XINPUT
&xinput_joypad, &xinput_joypad,
#endif #endif
#ifdef GEKKO #ifdef GEKKO

View File

@ -219,7 +219,7 @@ if [ "$OS" = 'Win32' ]; then
check_lib DSOUND -ldsound check_lib DSOUND -ldsound
if [ "$HAVE_DINPUT" != 'no' ]; then if [ "$HAVE_DINPUT" != 'no' ]; then
HAVE_WINXINPUT=yes HAVE_XINPUT=yes
fi fi
HAVE_XAUDIO=yes HAVE_XAUDIO=yes

View File

@ -25,7 +25,7 @@
#include "../input/drivers/dinput.c" #include "../input/drivers/dinput.c"
#endif #endif
#if defined(HAVE_WINXINPUT) #if defined(HAVE_XINPUT)
#include "../input/drivers_joypad/xinput_joypad.c" #include "../input/drivers_joypad/xinput_joypad.c"
#endif #endif