diff --git a/menu/menu_hash.c b/menu/menu_hash.c index ca2de5971e..6e5a1dd85d 100644 --- a/menu/menu_hash.c +++ b/menu/menu_hash.c @@ -225,8 +225,12 @@ static const char *menu_hash_to_str_english(uint32_t hash) return "input_overlay_opacity"; case MENU_LABEL_VALUE_OVERLAY_OPACITY: return "Overlay Opacity"; + case MENU_LABEL_MENU_WALLPAPER: + return "menu_wallpaper"; case MENU_LABEL_VALUE_MENU_WALLPAPER: return "Menu Wallpaper"; + case MENU_LABEL_DYNAMIC_WALLPAPER: + return "menu_dynamic_wallpaper_enable"; case MENU_LABEL_VALUE_DYNAMIC_WALLPAPER: return "Dynamic Wallpaper"; case MENU_LABEL_VALUE_BOXART: diff --git a/menu/menu_hash.h b/menu/menu_hash.h index 40e5d0a79d..367752328c 100644 --- a/menu/menu_hash.h +++ b/menu/menu_hash.h @@ -96,7 +96,9 @@ extern "C" { #define MENU_LABEL_OVERLAY_OPACITY 0xc466fbaeU #define MENU_LABEL_VALUE_OVERLAY_OPACITY 0x98605740U +#define MENU_LABEL_MENU_WALLPAPER 0x3b84de01U #define MENU_LABEL_VALUE_MENU_WALLPAPER 0x4555d2a2U +#define MENU_LABEL_DYNAMIC_WALLPAPER 0xf011ccabU #define MENU_LABEL_VALUE_DYNAMIC_WALLPAPER 0x66928c32U #define MENU_LABEL_VALUE_BOXART 0x716441ebU #define MENU_LABEL_PAL60_ENABLE 0x62bc416eU diff --git a/menu/menu_setting.c b/menu/menu_setting.c index c91e0fa747..a0c62e8727 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -5700,7 +5700,7 @@ static bool setting_append_list_menu_options( CONFIG_PATH( settings->menu.wallpaper, - "menu_wallpaper", + menu_hash_to_str(MENU_LABEL_MENU_WALLPAPER), menu_hash_to_str(MENU_LABEL_VALUE_MENU_WALLPAPER), "", group_info.name, @@ -5713,7 +5713,7 @@ static bool setting_append_list_menu_options( CONFIG_BOOL( settings->menu.dynamic_wallpaper_enable, - "menu_dynamic_wallpaper_enable", + menu_hash_to_str(MENU_LABEL_DYNAMIC_WALLPAPER), menu_hash_to_str(MENU_LABEL_VALUE_DYNAMIC_WALLPAPER), true, menu_hash_to_str(MENU_VALUE_OFF),