Skip to content

Commit c9a06dc

Browse files
committed
Config reset icon corrections
1 parent dc44c08 commit c9a06dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

menu/drivers/materialui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11703,6 +11703,7 @@ static void materialui_list_insert(void *userdata,
1170311703
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_OVERRIDE_UNLOAD))
1170411704
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_CHEAT_RELOAD_CHEATS))
1170511705
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_MENU_DISABLE_KIOSK_MODE))
11706+
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG))
1170611707
)
1170711708
{
1170811709
node->icon_texture_index = MUI_TEXTURE_UNDO_SAVE_STATE;
@@ -11725,7 +11726,6 @@ static void materialui_list_insert(void *userdata,
1172511726
}
1172611727
else if (
1172711728
string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_CONFIGURATIONS))
11728-
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG))
1172911729
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_CONFIGURATIONS_LIST))
1173011730
)
1173111731
{

menu/drivers/ozone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2175,6 +2175,7 @@ static uintptr_t ozone_entries_icon_get_texture(
21752175
case MENU_ENUM_LABEL_REMOVE_CURRENT_CONFIG_OVERRIDE_CONTENT_DIR:
21762176
case MENU_ENUM_LABEL_REMOVE_CURRENT_CONFIG_OVERRIDE_GAME:
21772177
return ozone->icons_textures[OZONE_ENTRIES_ICONS_TEXTURE_CLOSE];
2178+
case MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG:
21782179
case MENU_ENUM_LABEL_CORE_OPTIONS_RESET:
21792180
case MENU_ENUM_LABEL_REMAP_FILE_RESET:
21802181
case MENU_ENUM_LABEL_OVERRIDE_UNLOAD:
@@ -2272,7 +2273,6 @@ static uintptr_t ozone_entries_icon_get_texture(
22722273
#endif
22732274
#endif
22742275
case MENU_ENUM_LABEL_REBOOT:
2275-
case MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG:
22762276
case MENU_ENUM_LABEL_CHEAT_COPY_AFTER:
22772277
case MENU_ENUM_LABEL_CHEAT_COPY_BEFORE:
22782278
case MENU_ENUM_LABEL_CHEAT_RELOAD_CHEATS:

menu/drivers/xmb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3537,7 +3537,6 @@ static uintptr_t xmb_icon_get_id(xmb_handle_t *xmb,
35373537
case MENU_ENUM_LABEL_RESTART_CONTENT:
35383538
case MENU_ENUM_LABEL_QUICK_MENU_SHOW_RESTART_CONTENT:
35393539
case MENU_ENUM_LABEL_REBOOT:
3540-
case MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG:
35413540
case MENU_ENUM_LABEL_CHEAT_COPY_AFTER:
35423541
case MENU_ENUM_LABEL_CHEAT_COPY_BEFORE:
35433542
case MENU_ENUM_LABEL_CHEAT_RELOAD_CHEATS:
@@ -3850,6 +3849,7 @@ static uintptr_t xmb_icon_get_id(xmb_handle_t *xmb,
38503849
case MENU_ENUM_LABEL_REMOVE_CURRENT_CONFIG_OVERRIDE_CONTENT_DIR:
38513850
case MENU_ENUM_LABEL_REMOVE_CURRENT_CONFIG_OVERRIDE_GAME:
38523851
return xmb->textures.list[XMB_TEXTURE_CLOSE];
3852+
case MENU_ENUM_LABEL_RESET_TO_DEFAULT_CONFIG:
38533853
case MENU_ENUM_LABEL_CORE_OPTIONS_RESET:
38543854
case MENU_ENUM_LABEL_REMAP_FILE_RESET:
38553855
case MENU_ENUM_LABEL_OVERRIDE_UNLOAD:

0 commit comments

Comments
 (0)