diff --git a/menu/menu_hash.c b/menu/menu_hash.c index 9f773fb3a9..66a74a7326 100644 --- a/menu/menu_hash.c +++ b/menu/menu_hash.c @@ -58,6 +58,10 @@ static const char *menu_hash_to_str_english(uint32_t hash) { switch (hash) { + case MENU_LABEL_REWIND_GRANULARITY: + return "rewind_granularity"; + case MENU_LABEL_VALUE_REWIND_GRANULARITY: + return "Rewind Granularity"; case MENU_LABEL_REMAP_FILE_LOAD: return "remap_file_load"; case MENU_LABEL_VALUE_REMAP_FILE_LOAD: diff --git a/menu/menu_hash.h b/menu/menu_hash.h index 28ae3ae7a0..8aa6920c0c 100644 --- a/menu/menu_hash.h +++ b/menu/menu_hash.h @@ -71,6 +71,7 @@ extern "C" { #define MENU_LABEL_VIDEO_FRAME_DELAY 0xd4aa9df4U #define MENU_LABEL_SCREENSHOT 0x9a37f083U #define MENU_LABEL_REWIND_GRANULARITY 0xe859cbdfU +#define MENU_LABEL_VALUE_REWIND_GRANULARITY 0x6e1ae4c0U #define MENU_LABEL_VIDEO_THREADED 0x0626179cU #define MENU_LABEL_VIDEO_VSYNC 0x09c2d34eU #define MENU_LABEL_VIDEO_HARD_SYNC 0xdcd623b6U diff --git a/menu/menu_setting.c b/menu/menu_setting.c index 08b3060750..3858f91c52 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -4319,8 +4319,8 @@ static bool setting_append_list_rewind_options( #endif CONFIG_UINT( settings->rewind_granularity, - "rewind_granularity", - "Rewind Granularity", + menu_hash_to_str(MENU_LABEL_REWIND_GRANULARITY), + menu_hash_to_str(MENU_LABEL_VALUE_REWIND_GRANULARITY), rewind_granularity, group_info.name, subgroup_info.name,