diff --git a/menu/intl/menu_hash_us.c b/menu/intl/menu_hash_us.c index ff631c312e..35a8556d0f 100644 --- a/menu/intl/menu_hash_us.c +++ b/menu/intl/menu_hash_us.c @@ -26,6 +26,8 @@ static const char *menu_hash_to_str_us_label(uint32_t hash) { switch (hash) { + case MENU_LABEL_START_CORE: + return "start_core"; case MENU_LABEL_CHEEVOS_TEST_UNOFFICIAL: return "cheevos_test_unofficial"; case MENU_LABEL_CHEEVOS_ENABLE: @@ -1642,6 +1644,8 @@ const char *menu_hash_to_str_us(uint32_t hash) return "Use Builtin Image Viewer"; case MENU_LABEL_VALUE_ENABLE: return "Enable"; + case MENU_LABEL_VALUE_START_CORE: + return "Start Core"; default: break; } diff --git a/menu/menu_hash.h b/menu/menu_hash.h index 5d05038481..40adb65112 100644 --- a/menu/menu_hash.h +++ b/menu/menu_hash.h @@ -666,6 +666,8 @@ extern "C" { #define MENU_LABEL_DETECT_CORE_LIST 0xaa07c341U #define MENU_LABEL_VALUE_DETECT_CORE_LIST 0x2a2ebd1aU #define MENU_LABEL_DETECT_CORE_LIST_OK 0xabba2a7aU +#define MENU_LABEL_START_CORE 0xb0b6ae5bU +#define MENU_LABEL_VALUE_START_CORE 0x2adef65cU #define MENU_LABEL_LOAD_CONTENT 0x828943c3U #define MENU_LABEL_VALUE_LOAD_CONTENT 0xf0e39e65U #define MENU_LABEL_VALUE_CORE_UPDATER_LIST 0x0372767dU