Add Cheevos Test Unofficial setting

This commit is contained in:
twinaphex 2015-10-18 07:09:49 +02:00
parent 4126e7b989
commit 04ae499e89

View File

@ -5588,11 +5588,32 @@ static bool setting_append_list_cheevos_options(
settings_t *settings = config_get_ptr();
START_GROUP(group_info,
//menu_hash_to_str(MENU_LABEL_VALUE_CHEEVOS_SETTINGS),
#if 0
menu_hash_to_str(MENU_LABEL_VALUE_CHEEVOS_SETTINGS),
#else
"Retro Achievements",
#endif
parent_group);
START_SUB_GROUP(list, list_info, "State", group_info.name, subgroup_info, parent_group);
CONFIG_BOOL(
settings->cheevos.test_unofficial,
#if 0
menu_hash_to_str(MENU_LABEL_CHEEVOS_TEST_UNOFFICIAL),
menu_hash_to_str(MENU_LABEL_VALUE_CHEEVOS_TEST_UNOFFICIAL),
#else
"cheevos_test_unofficial",
"Test unofficial",
#endif
true,
menu_hash_to_str(MENU_VALUE_OFF),
menu_hash_to_str(MENU_VALUE_ON),
group_info.name,
subgroup_info.name,
parent_group,
general_write_handler,
general_read_handler);
END_SUB_GROUP(list, list_info, parent_group);
END_GROUP(list, list_info, parent_group);
#endif