mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-20 09:48:27 +00:00
allow user defined autoconf files to take precedence over builtin
This commit is contained in:
parent
a840a081fb
commit
b6d5449ae6
@ -305,13 +305,14 @@ bool input_config_autoconfigure_joypad(autoconfig_params_t *params)
|
||||
if (!*params->name)
|
||||
return ret;
|
||||
|
||||
#if defined(HAVE_BUILTIN_AUTOCONFIG)
|
||||
ret = input_autoconfigure_joypad_from_conf_internal(params);
|
||||
#endif
|
||||
|
||||
if (!ret)
|
||||
ret = input_autoconfigure_joypad_from_conf_dir(params);
|
||||
|
||||
#if defined(HAVE_BUILTIN_AUTOCONFIG)
|
||||
if (!ret)
|
||||
ret = input_autoconfigure_joypad_from_conf_internal(params);
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user