Skip to content

Commit a1725ef

Browse files
committed
Cleanups
1 parent 66e76e4 commit a1725ef

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

config.def.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -608,8 +608,6 @@
608608

609609
#define DEFAULT_OVERLAY_SHOW_MOUSE_CURSOR false
610610

611-
#define DEFAULT_DISPLAY_KEYBOARD_OVERLAY false
612-
613611
#ifdef HAKCHI
614612
#define DEFAULT_INPUT_OVERLAY_OPACITY 0.5f
615613
#else
@@ -750,7 +748,6 @@
750748
#define DEFAULT_QUICK_MENU_SHOW_LATENCY true
751749
#define DEFAULT_QUICK_MENU_SHOW_REWIND true
752750
#define DEFAULT_QUICK_MENU_SHOW_OVERLAYS true
753-
#define DEFAULT_QUICK_MENU_SHOW_VIDEO_LAYOUT false
754751
#define DEFAULT_QUICK_MENU_SHOW_CHEATS true
755752
#define DEFAULT_QUICK_MENU_SHOW_SHADERS true
756753
#define DEFAULT_QUICK_MENU_SHOW_INFORMATION true
@@ -920,9 +917,6 @@
920917
#define DEFAULT_BLOCK_CONFIG_READ false
921918
#endif
922919

923-
/* TODO/FIXME - this setting is thread-unsafe right now and can corrupt the stack - default to off */
924-
#define DEFAULT_AUTOMATICALLY_ADD_CONTENT_TO_PLAYLIST false
925-
926920
#define DEFAULT_GAME_SPECIFIC_OPTIONS true
927921
#define DEFAULT_AUTO_OVERRIDES_ENABLE true
928922
#define DEFAULT_AUTO_REMAPS_ENABLE true
@@ -1366,10 +1360,6 @@
13661360
/* Require connections only in slave mode */
13671361
#define DEFAULT_NETPLAY_REQUIRE_SLAVES false
13681362

1369-
/* When being client over netplay, use keybinds for
1370-
* user 1 rather than user 2. */
1371-
#define DEFAULT_NETPLAY_CLIENT_SWAP_INPUT true
1372-
13731363
#define DEFAULT_NETPLAY_NAT_TRAVERSAL false
13741364

13751365
#define DEFAULT_NETPLAY_CHECK_FRAMES 600

configuration.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2463,7 +2463,7 @@ static struct config_uint_setting *populate_settings_uint(
24632463
SETTING_UINT("autosave_interval", &settings->uints.autosave_interval, true, DEFAULT_AUTOSAVE_INTERVAL, false);
24642464
SETTING_UINT("rewind_granularity", &settings->uints.rewind_granularity, true, DEFAULT_REWIND_GRANULARITY, false);
24652465
SETTING_UINT("rewind_buffer_size_step", &settings->uints.rewind_buffer_size_step, true, DEFAULT_REWIND_BUFFER_SIZE_STEP, false);
2466-
SETTING_UINT("run_ahead_frames", &settings->uints.run_ahead_frames, true, 1, false);
2466+
SETTING_UINT("run_ahead_frames", &settings->uints.run_ahead_frames, true, DEFAULT_RUN_AHEAD_FRAMES, false);
24672467
SETTING_UINT("replay_max_keep", &settings->uints.replay_max_keep, true, DEFAULT_REPLAY_MAX_KEEP, false);
24682468
SETTING_UINT("replay_checkpoint_interval", &settings->uints.replay_checkpoint_interval, true, DEFAULT_REPLAY_CHECKPOINT_INTERVAL, false);
24692469
SETTING_UINT("savestate_max_keep", &settings->uints.savestate_max_keep, true, DEFAULT_SAVESTATE_MAX_KEEP, false);

0 commit comments

Comments
 (0)