menu_entry_set_bool_value - call menu_setting_apply_deferred at

the end
This commit is contained in:
twinaphex 2015-08-17 16:05:32 +02:00
parent b6702ebb7e
commit ffc5266c6c

View File

@ -179,6 +179,7 @@ void menu_entry_set_bool_value(uint32_t i, bool value)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
setting_set_with_string_representation(setting, value ? "true" : "false");
menu_setting_apply_deferred(setting);
}
struct string_list *menu_entry_enum_values(uint32_t i)