don't try to autoconfigure GPIO devices

This commit is contained in:
radius 2015-08-11 17:13:25 -05:00
parent 19fb5240c6
commit 828734e007
23 changed files with 4 additions and 1 deletions

0
audio/drivers/gx_audio.c Normal file → Executable file
View File

0
audio/drivers/ps3_audio.c Normal file → Executable file
View File

0
defines/gx_defines.h Normal file → Executable file
View File

0
defines/ps3_defines.h Normal file → Executable file
View File

0
defines/psp_defines.h Normal file → Executable file
View File

0
frontend/drivers/platform_darwin.m Normal file → Executable file
View File

0
frontend/drivers/platform_gx.c Normal file → Executable file
View File

0
frontend/drivers/platform_ps3.c Normal file → Executable file
View File

0
frontend/drivers/platform_psp.c Normal file → Executable file
View File

0
gfx/drivers/gx_gfx.c Normal file → Executable file
View File

0
gfx/drivers/psp1_gfx.c Normal file → Executable file
View File

0
gfx/drivers_context/ps3_ctx.c Normal file → Executable file
View File

0
gfx/image/image.c Normal file → Executable file
View File

0
griffin/griffin.c Normal file → Executable file
View File

View File

@ -700,7 +700,10 @@ static void handle_hotplug(android_input_t *android,
settings->input.vid[*port] = params.vid;
strlcpy(params.driver, android_joypad.ident, sizeof(params.driver));
autoconfigured = input_config_autoconfigure_joypad(&params);
// Don't try to autoconfigure GPIO devices
if (!strstr(android->pad_states[0].name,"Generic I/O Device"))
autoconfigured = input_config_autoconfigure_joypad(&params);
if (autoconfigured)
{

0
input/drivers/ps3_input.c Normal file → Executable file
View File

0
input/drivers/psp_input.c Normal file → Executable file
View File

0
input/drivers_joypad/psp_joypad.c Normal file → Executable file
View File

0
input/input_driver.c Normal file → Executable file
View File

0
input/input_joypad_driver.c Normal file → Executable file
View File

0
libretro-common/include/retro_miscellaneous.h Normal file → Executable file
View File

0
libretro-common/include/rthreads/rthreads.h Normal file → Executable file
View File

0
logger/netlogger/logger.c Normal file → Executable file
View File