mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-29 03:00:24 +00:00
Cleanups
This commit is contained in:
parent
bea8fb1b19
commit
28faf469a0
@ -101,17 +101,17 @@ found:
|
||||
void input_config_autoconfigure_joypad(autoconfig_params_t *params)
|
||||
{
|
||||
size_t i;
|
||||
bool internal_only, block_osd_spam;
|
||||
bool internal_only;
|
||||
struct string_list *list = NULL;
|
||||
settings_t *settings = config_get_ptr();
|
||||
bool block_osd_spam = settings &&
|
||||
settings->input.autoconfigured[params->idx] && params->name;
|
||||
|
||||
if (!settings->input.autodetect_enable)
|
||||
if (!settings || !settings->input.autodetect_enable)
|
||||
return;
|
||||
|
||||
/* This will be the case if input driver is reinit.
|
||||
* No reason to spam autoconfigure messages
|
||||
* every time (fine in log). */
|
||||
block_osd_spam = settings->input.autoconfigured[params->idx] && params->name;
|
||||
/* This will be the case if input driver is reinitialized.
|
||||
* No reason to spam autoconfigure messages every time. */
|
||||
|
||||
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user