mirror of
https://github.com/libretro/RetroArch
synced 2025-03-10 16:14:03 +00:00
print osd messages on save
This commit is contained in:
parent
51d8051f58
commit
88c4b2415d
@ -171,7 +171,6 @@ static bool input_autoconfigure_joypad_from_conf_dir(
|
||||
if (!list || !list->size)
|
||||
list = dir_list_new(settings->input.autoconfig_dir, "cfg", false);
|
||||
|
||||
|
||||
if(!list)
|
||||
return false;
|
||||
|
||||
|
@ -1140,7 +1140,10 @@ static int setting_action_ok_bind_all_save_autoconfig(void *data, bool wraparoun
|
||||
if (!settings || !setting)
|
||||
return -1;
|
||||
|
||||
config_save_autoconf_profile(settings->input.device_names[setting->index_offset], setting->index_offset);
|
||||
if(config_save_autoconf_profile(settings->input.device_names[setting->index_offset], setting->index_offset))
|
||||
rarch_main_msg_queue_push("Autoconf file saved successfully", 1, 100, true);
|
||||
else
|
||||
rarch_main_msg_queue_push("Error saving autoconf file", 1, 100, true);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user