Skip to content

Commit cc9d668

Browse files
libretroadminLibretroAdmin
authored andcommitted
settings: migrate a batch of extended-row tables to single-source def files
Each table individually performed and gated by tools/settings_migrate_group.py with the standard battery including the platform-profile lanes and the integrated enum consolidation stage; the batch is squashed for review convenience.
1 parent 8cba239 commit cc9d668

9 files changed

Lines changed: 1110 additions & 730 deletions

configuration.c

Lines changed: 20 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,10 +1816,6 @@ static struct config_bool_setting *populate_settings_bool(
18161816
SETTING_BOOL("builtin_mediaplayer_enable", &settings->bools.multimedia_builtin_mediaplayer_enable, true, DEFAULT_BUILTIN_MEDIAPLAYER_ENABLE, false);
18171817
SETTING_BOOL("builtin_imageviewer_enable", &settings->bools.multimedia_builtin_imageviewer_enable, true, DEFAULT_BUILTIN_IMAGEVIEWER_ENABLE, false);
18181818
SETTING_BOOL("bundle_assets_extract_enable", &settings->bools.bundle_assets_extract_enable, true, DEFAULT_BUNDLE_ASSETS_EXTRACT_ENABLE, false);
1819-
SETTING_BOOL("fps_show", &settings->bools.video_fps_show, true, DEFAULT_FPS_SHOW, false);
1820-
SETTING_BOOL("statistics_show", &settings->bools.video_statistics_show, true, DEFAULT_STATISTICS_SHOW, false);
1821-
SETTING_BOOL("framecount_show", &settings->bools.video_framecount_show, true, DEFAULT_FRAMECOUNT_SHOW, false);
1822-
SETTING_BOOL("memory_show", &settings->bools.video_memory_show, true, DEFAULT_MEMORY_SHOW, false);
18231819
SETTING_BOOL("auto_screenshot_filename", &settings->bools.auto_screenshot_filename, true, DEFAULT_AUTO_SCREENSHOT_FILENAME, false);
18241820
SETTING_BOOL("video_filter_enable", &settings->bools.video_filter_enable, true, true, false);
18251821
SETTING_BOOL("apply_cheats_after_toggle", &settings->bools.apply_cheats_after_toggle, true, DEFAULT_APPLY_CHEATS_AFTER_TOGGLE, false);
@@ -1932,6 +1928,10 @@ static struct config_bool_setting *populate_settings_bool(
19321928
#include "settings/settings_def_video_fullscreen.h"
19331929
#define SETTINGS_DEF_CONFIG_PASS
19341930
#include "settings/settings_def_video_sync.h"
1931+
#ifdef HAVE_OVERLAY
1932+
#include "settings/settings_def_overlay_appearance.h"
1933+
#endif
1934+
#include "settings/settings_def_notification_views.h"
19351935
#ifdef HAVE_MENU
19361936
#ifdef HAVE_OZONE
19371937
#include "settings/settings_def_ozone_typography.h"
@@ -2414,27 +2414,6 @@ static struct config_bool_setting *populate_settings_bool(
24142414
SETTING_BOOL("video_window_save_positions", &settings->bools.video_window_save_positions, true, DEFAULT_WINDOW_SAVE_POSITIONS, false);
24152415

24162416
SETTING_BOOL("menu_enable_widgets", &settings->bools.menu_enable_widgets, true, DEFAULT_MENU_ENABLE_WIDGETS, false);
2417-
SETTING_BOOL("menu_show_load_content_animation", &settings->bools.menu_show_load_content_animation, true, DEFAULT_MENU_SHOW_LOAD_CONTENT_ANIMATION, false);
2418-
SETTING_BOOL("notification_show_autoconfig", &settings->bools.notification_show_autoconfig, true, DEFAULT_NOTIFICATION_SHOW_AUTOCONFIG, false);
2419-
SETTING_BOOL("notification_show_autoconfig_fails", &settings->bools.notification_show_autoconfig_fails, true, DEFAULT_NOTIFICATION_SHOW_AUTOCONFIG_FAILS, false);
2420-
SETTING_BOOL("notification_show_cheats_applied", &settings->bools.notification_show_cheats_applied, true, DEFAULT_NOTIFICATION_SHOW_CHEATS_APPLIED, false);
2421-
SETTING_BOOL("notification_show_patch_applied", &settings->bools.notification_show_patch_applied, true, DEFAULT_NOTIFICATION_SHOW_PATCH_APPLIED, false);
2422-
SETTING_BOOL("notification_show_remap_load", &settings->bools.notification_show_remap_load, true, DEFAULT_NOTIFICATION_SHOW_REMAP_LOAD, false);
2423-
SETTING_BOOL("notification_show_config_override_load", &settings->bools.notification_show_config_override_load, true, DEFAULT_NOTIFICATION_SHOW_CONFIG_OVERRIDE_LOAD, false);
2424-
SETTING_BOOL("notification_show_set_initial_disk", &settings->bools.notification_show_set_initial_disk, true, DEFAULT_NOTIFICATION_SHOW_SET_INITIAL_DISK, false);
2425-
SETTING_BOOL("notification_show_disk_control", &settings->bools.notification_show_disk_control, true, DEFAULT_NOTIFICATION_SHOW_DISK_CONTROL, false);
2426-
SETTING_BOOL("notification_show_save_state", &settings->bools.notification_show_save_state, true, DEFAULT_NOTIFICATION_SHOW_SAVE_STATE, false);
2427-
SETTING_BOOL("notification_show_fast_forward", &settings->bools.notification_show_fast_forward, true, DEFAULT_NOTIFICATION_SHOW_FAST_FORWARD, false);
2428-
#ifdef HAVE_SCREENSHOTS
2429-
SETTING_BOOL("notification_show_screenshot", &settings->bools.notification_show_screenshot, true, DEFAULT_NOTIFICATION_SHOW_SCREENSHOT, false);
2430-
#endif
2431-
SETTING_BOOL("notification_show_refresh_rate", &settings->bools.notification_show_refresh_rate, true, DEFAULT_NOTIFICATION_SHOW_REFRESH_RATE, false);
2432-
#ifdef HAVE_NETWORKING
2433-
SETTING_BOOL("notification_show_netplay_extra", &settings->bools.notification_show_netplay_extra, true, DEFAULT_NOTIFICATION_SHOW_NETPLAY_EXTRA, false);
2434-
#endif
2435-
#ifdef HAVE_MENU
2436-
SETTING_BOOL("notification_show_when_menu_is_alive", &settings->bools.notification_show_when_menu_is_alive, true, DEFAULT_NOTIFICATION_SHOW_WHEN_MENU_IS_ALIVE, false);
2437-
#endif
24382417

24392418
#ifdef HAVE_MENU
24402419
SETTING_BOOL("menu_unified_controls", &settings->bools.menu_unified_controls, true, false, false);
@@ -2488,7 +2467,6 @@ static struct config_bool_setting *populate_settings_bool(
24882467
SETTING_BOOL("input_overlay_show_mouse_cursor", &settings->bools.input_overlay_show_mouse_cursor, true, DEFAULT_OVERLAY_SHOW_MOUSE_CURSOR, false);
24892468
SETTING_BOOL("input_overlay_auto_rotate", &settings->bools.input_overlay_auto_rotate, true, DEFAULT_OVERLAY_AUTO_ROTATE, false);
24902469
SETTING_BOOL("input_osk_overlay_auto_scale", &settings->bools.input_osk_overlay_auto_scale, true, DEFAULT_INPUT_OVERLAY_AUTO_SCALE, false);
2491-
SETTING_BOOL("input_overlay_pointer_enable", &settings->bools.input_overlay_pointer_enable, true, DEFAULT_INPUT_OVERLAY_POINTER_ENABLE, false);
24922470
#endif
24932471
#if defined(VITA)
24942472
SETTING_BOOL("input_backtouch_enable", &settings->bools.input_backtouch_enable, false, DEFAULT_INPUT_BACKTOUCH_ENABLE, false);
@@ -2536,7 +2514,6 @@ static struct config_bool_setting *populate_settings_bool(
25362514
SETTING_BOOL("netplay_request_device_p14", &settings->bools.netplay_request_devices[13], true, false, false);
25372515
SETTING_BOOL("netplay_request_device_p15", &settings->bools.netplay_request_devices[14], true, false, false);
25382516
SETTING_BOOL("netplay_request_device_p16", &settings->bools.netplay_request_devices[15], true, false, false);
2539-
SETTING_BOOL("netplay_ping_show", &settings->bools.netplay_ping_show, true, DEFAULT_NETPLAY_PING_SHOW, false);
25402517
#endif
25412518

25422519

@@ -2606,6 +2583,10 @@ static struct config_float_setting *populate_settings_float(
26062583
#include "settings/settings_def_video_fullscreen.h"
26072584
#define SETTINGS_DEF_CONFIG_PASS
26082585
#include "settings/settings_def_video_sync.h"
2586+
#ifdef HAVE_OVERLAY
2587+
#include "settings/settings_def_overlay_appearance.h"
2588+
#endif
2589+
#include "settings/settings_def_notification_views.h"
26092590
#ifdef HAVE_MENU
26102591
#ifdef HAVE_OZONE
26112592
#include "settings/settings_def_ozone_typography.h"
@@ -3106,18 +3087,6 @@ static struct config_float_setting *populate_settings_float(
31063087
SETTING_FLOAT("input_sensor_gyroscope_sensitivity", &settings->floats.input_sensor_gyroscope_sensitivity, true, DEFAULT_SENSOR_GYROSCOPE_SENSITIVITY, false);
31073088
#ifdef HAVE_OVERLAY
31083089
SETTING_FLOAT("input_osk_overlay_opacity", &settings->floats.input_osk_overlay_opacity, true, DEFAULT_INPUT_OVERLAY_OPACITY, false);
3109-
SETTING_FLOAT("input_overlay_scale_landscape", &settings->floats.input_overlay_scale_landscape, true, DEFAULT_INPUT_OVERLAY_SCALE_LANDSCAPE, false);
3110-
SETTING_FLOAT("input_overlay_aspect_adjust_landscape", &settings->floats.input_overlay_aspect_adjust_landscape, true, DEFAULT_INPUT_OVERLAY_ASPECT_ADJUST_LANDSCAPE, false);
3111-
SETTING_FLOAT("input_overlay_x_separation_landscape", &settings->floats.input_overlay_x_separation_landscape, true, DEFAULT_INPUT_OVERLAY_X_SEPARATION_LANDSCAPE, false);
3112-
SETTING_FLOAT("input_overlay_y_separation_landscape", &settings->floats.input_overlay_y_separation_landscape, true, DEFAULT_INPUT_OVERLAY_Y_SEPARATION_LANDSCAPE, false);
3113-
SETTING_FLOAT("input_overlay_x_offset_landscape", &settings->floats.input_overlay_x_offset_landscape, true, DEFAULT_INPUT_OVERLAY_X_OFFSET_LANDSCAPE, false);
3114-
SETTING_FLOAT("input_overlay_y_offset_landscape", &settings->floats.input_overlay_y_offset_landscape, true, DEFAULT_INPUT_OVERLAY_Y_OFFSET_LANDSCAPE, false);
3115-
SETTING_FLOAT("input_overlay_scale_portrait", &settings->floats.input_overlay_scale_portrait, true, DEFAULT_INPUT_OVERLAY_SCALE_PORTRAIT, false);
3116-
SETTING_FLOAT("input_overlay_aspect_adjust_portrait", &settings->floats.input_overlay_aspect_adjust_portrait, true, DEFAULT_INPUT_OVERLAY_ASPECT_ADJUST_PORTRAIT, false);
3117-
SETTING_FLOAT("input_overlay_x_separation_portrait", &settings->floats.input_overlay_x_separation_portrait, true, DEFAULT_INPUT_OVERLAY_X_SEPARATION_PORTRAIT, false);
3118-
SETTING_FLOAT("input_overlay_y_separation_portrait", &settings->floats.input_overlay_y_separation_portrait, true, DEFAULT_INPUT_OVERLAY_Y_SEPARATION_PORTRAIT, false);
3119-
SETTING_FLOAT("input_overlay_x_offset_portrait", &settings->floats.input_overlay_x_offset_portrait, true, DEFAULT_INPUT_OVERLAY_X_OFFSET_PORTRAIT, false);
3120-
SETTING_FLOAT("input_overlay_y_offset_portrait", &settings->floats.input_overlay_y_offset_portrait, true, DEFAULT_INPUT_OVERLAY_Y_OFFSET_PORTRAIT, false);
31213090
#endif
31223091

31233092

@@ -3136,9 +3105,6 @@ static struct config_uint_setting *populate_settings_uint(
31363105
return NULL;
31373106

31383107
SETTING_UINT("frontend_log_level", &settings->uints.frontend_log_level, true, DEFAULT_FRONTEND_LOG_LEVEL, false);
3139-
SETTING_UINT("fps_update_interval", &settings->uints.fps_update_interval, true, DEFAULT_FPS_UPDATE_INTERVAL, false);
3140-
SETTING_UINT("memory_update_interval", &settings->uints.memory_update_interval, true, DEFAULT_MEMORY_UPDATE_INTERVAL, false);
3141-
SETTING_UINT("time_show", &settings->uints.video_time_show, true, DEFAULT_TIME_SHOW, false);
31423108
SETTING_UINT("core_updater_auto_backup_history_size", &settings->uints.core_updater_auto_backup_history_size, true, DEFAULT_CORE_UPDATER_AUTO_BACKUP_HISTORY_SIZE, false);
31433109
SETTING_UINT("run_ahead_frames", &settings->uints.run_ahead_frames, true, DEFAULT_RUN_AHEAD_FRAMES, false);
31443110
#ifdef HAVE_MENU
@@ -3224,6 +3190,10 @@ static struct config_uint_setting *populate_settings_uint(
32243190
#include "settings/settings_def_video_fullscreen.h"
32253191
#define SETTINGS_DEF_CONFIG_PASS
32263192
#include "settings/settings_def_video_sync.h"
3193+
#ifdef HAVE_OVERLAY
3194+
#include "settings/settings_def_overlay_appearance.h"
3195+
#endif
3196+
#include "settings/settings_def_notification_views.h"
32273197
#ifdef HAVE_MENU
32283198
#ifdef HAVE_OZONE
32293199
#include "settings/settings_def_ozone_typography.h"
@@ -3735,10 +3705,6 @@ static struct config_uint_setting *populate_settings_uint(
37353705
SETTING_UINT("split_joycon_p8", &settings->uints.input_split_joycon[7], true, 0, false);
37363706
#endif
37373707

3738-
#ifdef HAVE_SCREENSHOTS
3739-
SETTING_UINT("notification_show_screenshot_duration", &settings->uints.notification_show_screenshot_duration, true, DEFAULT_NOTIFICATION_SHOW_SCREENSHOT_DURATION, false);
3740-
SETTING_UINT("notification_show_screenshot_flash", &settings->uints.notification_show_screenshot_flash, true, DEFAULT_NOTIFICATION_SHOW_SCREENSHOT_FLASH, false);
3741-
#endif
37423708

37433709
#ifdef HAVE_NETWORKING
37443710
SETTING_UINT("netplay_ip_port", &settings->uints.netplay_port, true, RARCH_DEFAULT_PORT, false);
@@ -3863,6 +3829,10 @@ static struct config_int_setting *populate_settings_int(
38633829
#include "settings/settings_def_video_fullscreen.h"
38643830
#define SETTINGS_DEF_CONFIG_PASS
38653831
#include "settings/settings_def_video_sync.h"
3832+
#ifdef HAVE_OVERLAY
3833+
#include "settings/settings_def_overlay_appearance.h"
3834+
#endif
3835+
#include "settings/settings_def_notification_views.h"
38663836
#ifdef HAVE_MENU
38673837
#ifdef HAVE_OZONE
38683838
#include "settings/settings_def_ozone_typography.h"
@@ -4374,6 +4344,10 @@ static struct config_int_setting *populate_settings_int(
43744344
#include "settings/settings_def_video_fullscreen.h"
43754345
#define SETTINGS_DEF_CONFIG_PASS
43764346
#include "settings/settings_def_video_sync.h"
4347+
#ifdef HAVE_OVERLAY
4348+
#include "settings/settings_def_overlay_appearance.h"
4349+
#endif
4350+
#include "settings/settings_def_notification_views.h"
43774351
#ifdef HAVE_MENU
43784352
#ifdef HAVE_OZONE
43794353
#include "settings/settings_def_ozone_typography.h"

intl/msg_hash_lbl.h

Lines changed: 0 additions & 152 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ MSG_HASH(
55
MENU_ENUM_LABEL_ACCOUNTS_CHEEVOS_USERNAME,
66
MENU_ENUM_LABEL_ACCOUNTS_CHEEVOS_USERNAME_STR
77
)
8-
MSG_HASH(
9-
MENU_ENUM_LABEL_TIME_SHOW,
10-
MENU_ENUM_LABEL_TIME_SHOW_STR
11-
)
128
MSG_HASH(
139
MENU_ENUM_LABEL_ACHIEVEMENT_PAUSE_MENU,
1410
MENU_ENUM_LABEL_ACHIEVEMENT_PAUSE_MENU_STR
@@ -1350,18 +1346,6 @@ MSG_HASH(
13501346
MENU_ENUM_LABEL_FAVORITES_TAB,
13511347
MENU_ENUM_LABEL_FAVORITES_TAB_STR
13521348
)
1353-
MSG_HASH(
1354-
MENU_ENUM_LABEL_FPS_SHOW,
1355-
MENU_ENUM_LABEL_FPS_SHOW_STR
1356-
)
1357-
MSG_HASH(
1358-
MENU_ENUM_LABEL_STATISTICS_SHOW,
1359-
MENU_ENUM_LABEL_STATISTICS_SHOW_STR
1360-
)
1361-
MSG_HASH(
1362-
MENU_ENUM_LABEL_NETPLAY_PING_SHOW,
1363-
MENU_ENUM_LABEL_NETPLAY_PING_SHOW_STR
1364-
)
13651349
MSG_HASH(
13661350
MENU_ENUM_LABEL_FRONTEND_COUNTERS,
13671351
MENU_ENUM_LABEL_FRONTEND_COUNTERS_STR
@@ -1556,10 +1540,6 @@ MSG_HASH(
15561540
MENU_ENUM_LABEL_INPUT_OSK_OVERLAY_AUTO_SCALE,
15571541
MENU_ENUM_LABEL_INPUT_OSK_OVERLAY_AUTO_SCALE_STR
15581542
)
1559-
MSG_HASH(
1560-
MENU_ENUM_LABEL_INPUT_OVERLAY_POINTER_ENABLE,
1561-
MENU_ENUM_LABEL_INPUT_OVERLAY_POINTER_ENABLE_STR
1562-
)
15631543
MSG_HASH(
15641544
MENU_ENUM_LABEL_INPUT_OVERLAY_DPAD_DIAGONAL_SENSITIVITY,
15651545
MENU_ENUM_LABEL_INPUT_OVERLAY_DPAD_DIAGONAL_SENSITIVITY_STR
@@ -1908,54 +1888,6 @@ MSG_HASH(
19081888
MENU_ENUM_LABEL_OSK_OVERLAY_PRESET,
19091889
MENU_ENUM_LABEL_OSK_OVERLAY_PRESET_STR
19101890
)
1911-
MSG_HASH(
1912-
MENU_ENUM_LABEL_OVERLAY_SCALE_LANDSCAPE,
1913-
MENU_ENUM_LABEL_OVERLAY_SCALE_LANDSCAPE_STR
1914-
)
1915-
MSG_HASH(
1916-
MENU_ENUM_LABEL_OVERLAY_ASPECT_ADJUST_LANDSCAPE,
1917-
MENU_ENUM_LABEL_OVERLAY_ASPECT_ADJUST_LANDSCAPE_STR
1918-
)
1919-
MSG_HASH(
1920-
MENU_ENUM_LABEL_OVERLAY_X_SEPARATION_LANDSCAPE,
1921-
MENU_ENUM_LABEL_OVERLAY_X_SEPARATION_LANDSCAPE_STR
1922-
)
1923-
MSG_HASH(
1924-
MENU_ENUM_LABEL_OVERLAY_Y_SEPARATION_LANDSCAPE,
1925-
MENU_ENUM_LABEL_OVERLAY_Y_SEPARATION_LANDSCAPE_STR
1926-
)
1927-
MSG_HASH(
1928-
MENU_ENUM_LABEL_OVERLAY_X_OFFSET_LANDSCAPE,
1929-
MENU_ENUM_LABEL_OVERLAY_X_OFFSET_LANDSCAPE_STR
1930-
)
1931-
MSG_HASH(
1932-
MENU_ENUM_LABEL_OVERLAY_Y_OFFSET_LANDSCAPE,
1933-
MENU_ENUM_LABEL_OVERLAY_Y_OFFSET_LANDSCAPE_STR
1934-
)
1935-
MSG_HASH(
1936-
MENU_ENUM_LABEL_OVERLAY_SCALE_PORTRAIT,
1937-
MENU_ENUM_LABEL_OVERLAY_SCALE_PORTRAIT_STR
1938-
)
1939-
MSG_HASH(
1940-
MENU_ENUM_LABEL_OVERLAY_ASPECT_ADJUST_PORTRAIT,
1941-
MENU_ENUM_LABEL_OVERLAY_ASPECT_ADJUST_PORTRAIT_STR
1942-
)
1943-
MSG_HASH(
1944-
MENU_ENUM_LABEL_OVERLAY_X_SEPARATION_PORTRAIT,
1945-
MENU_ENUM_LABEL_OVERLAY_X_SEPARATION_PORTRAIT_STR
1946-
)
1947-
MSG_HASH(
1948-
MENU_ENUM_LABEL_OVERLAY_Y_SEPARATION_PORTRAIT,
1949-
MENU_ENUM_LABEL_OVERLAY_Y_SEPARATION_PORTRAIT_STR
1950-
)
1951-
MSG_HASH(
1952-
MENU_ENUM_LABEL_OVERLAY_X_OFFSET_PORTRAIT,
1953-
MENU_ENUM_LABEL_OVERLAY_X_OFFSET_PORTRAIT_STR
1954-
)
1955-
MSG_HASH(
1956-
MENU_ENUM_LABEL_OVERLAY_Y_OFFSET_PORTRAIT,
1957-
MENU_ENUM_LABEL_OVERLAY_Y_OFFSET_PORTRAIT_STR
1958-
)
19591891
MSG_HASH(
19601892
MENU_ENUM_LABEL_PAL60_ENABLE,
19611893
MENU_ENUM_LABEL_PAL60_ENABLE_STR
@@ -3285,14 +3217,6 @@ MSG_HASH(
32853217
MENU_ENUM_LABEL_MENU_DISABLE_KIOSK_MODE,
32863218
MENU_ENUM_LABEL_MENU_DISABLE_KIOSK_MODE_STR
32873219
)
3288-
MSG_HASH(
3289-
MENU_ENUM_LABEL_FRAMECOUNT_SHOW,
3290-
MENU_ENUM_LABEL_FRAMECOUNT_SHOW_STR
3291-
)
3292-
MSG_HASH(
3293-
MENU_ENUM_LABEL_MEMORY_SHOW,
3294-
MENU_ENUM_LABEL_MEMORY_SHOW_STR
3295-
)
32963220
MSG_HASH(
32973221
MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_SINC,
32983222
MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_SINC_STR
@@ -3845,82 +3769,6 @@ MSG_HASH(
38453769
MENU_ENUM_LABEL_PLAYLIST_SHOW_SUBLABELS,
38463770
MENU_ENUM_LABEL_PLAYLIST_SHOW_SUBLABELS_STR
38473771
)
3848-
MSG_HASH(
3849-
MENU_ENUM_LABEL_MENU_SHOW_LOAD_CONTENT_ANIMATION,
3850-
MENU_ENUM_LABEL_MENU_SHOW_LOAD_CONTENT_ANIMATION_STR
3851-
)
3852-
MSG_HASH(
3853-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_AUTOCONFIG,
3854-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_AUTOCONFIG_STR
3855-
)
3856-
MSG_HASH(
3857-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_AUTOCONFIG_FAILS,
3858-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_AUTOCONFIG_FAILS_STR
3859-
)
3860-
MSG_HASH(
3861-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_CHEATS_APPLIED,
3862-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_CHEATS_APPLIED_STR
3863-
)
3864-
MSG_HASH(
3865-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_PATCH_APPLIED,
3866-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_PATCH_APPLIED_STR
3867-
)
3868-
MSG_HASH(
3869-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_REMAP_LOAD,
3870-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_REMAP_LOAD_STR
3871-
)
3872-
MSG_HASH(
3873-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_CONFIG_OVERRIDE_LOAD,
3874-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_CONFIG_OVERRIDE_LOAD_STR
3875-
)
3876-
MSG_HASH(
3877-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SET_INITIAL_DISK,
3878-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SET_INITIAL_DISK_STR
3879-
)
3880-
MSG_HASH(
3881-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_DISK_CONTROL,
3882-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_DISK_CONTROL_STR
3883-
)
3884-
MSG_HASH(
3885-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SAVE_STATE,
3886-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SAVE_STATE_STR
3887-
)
3888-
MSG_HASH(
3889-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_FAST_FORWARD,
3890-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_FAST_FORWARD_STR
3891-
)
3892-
MSG_HASH(
3893-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT,
3894-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT_STR
3895-
)
3896-
MSG_HASH(
3897-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT_DURATION,
3898-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT_DURATION_STR
3899-
)
3900-
MSG_HASH(
3901-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT_FLASH,
3902-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_SCREENSHOT_FLASH_STR
3903-
)
3904-
MSG_HASH(
3905-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_REFRESH_RATE,
3906-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_REFRESH_RATE_STR
3907-
)
3908-
MSG_HASH(
3909-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_NETPLAY_EXTRA,
3910-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_NETPLAY_EXTRA_STR
3911-
)
3912-
MSG_HASH(
3913-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_WHEN_MENU_IS_ALIVE,
3914-
MENU_ENUM_LABEL_NOTIFICATION_SHOW_WHEN_MENU_IS_ALIVE_STR
3915-
)
3916-
MSG_HASH(
3917-
MENU_ENUM_LABEL_FPS_UPDATE_INTERVAL,
3918-
MENU_ENUM_LABEL_FPS_UPDATE_INTERVAL_STR
3919-
)
3920-
MSG_HASH(
3921-
MENU_ENUM_LABEL_MEMORY_UPDATE_INTERVAL,
3922-
MENU_ENUM_LABEL_MEMORY_UPDATE_INTERVAL_STR
3923-
)
39243772
MSG_HASH(
39253773
MENU_ENUM_LABEL_AI_SERVICE_URL,
39263774
MENU_ENUM_LABEL_AI_SERVICE_URL_STR

intl/msg_hash_us.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,8 @@ static const char *const msg_hash_us_lbl_strs[] = {
559559
#define S_ACTION_EX_NS(T, n, sd, ok, rp, c, us) n,
560560
#include "../settings/settings_def_video_fullscreen.h"
561561
#include "../settings/settings_def_video_sync.h"
562+
#include "../settings/settings_def_overlay_appearance.h"
563+
#include "../settings/settings_def_notification_views.h"
562564
#include "../settings/settings_def_ozone_typography.h"
563565
#include "../settings/settings_def_saving.h"
564566
#include "../settings/settings_def_notification_positions.h"
@@ -871,6 +873,8 @@ static const uint32_t msg_hash_us_lbl_ids[] = {
871873
#define S_ACTION_EX_NS(T, n, sd, ok, rp, c, us) (uint32_t)MENU_ENUM_LABEL_##T,
872874
#include "../settings/settings_def_video_fullscreen.h"
873875
#include "../settings/settings_def_video_sync.h"
876+
#include "../settings/settings_def_overlay_appearance.h"
877+
#include "../settings/settings_def_notification_views.h"
874878
#include "../settings/settings_def_ozone_typography.h"
875879
#include "../settings/settings_def_saving.h"
876880
#include "../settings/settings_def_notification_positions.h"

0 commit comments

Comments
 (0)