From 7ab1f420d966a53e775d0e7f172c6b94a9d8e17d Mon Sep 17 00:00:00 2001 From: Gregor Richards Date: Thu, 29 Sep 2016 20:20:07 -0400 Subject: [PATCH] Set delay_frames to 16 by default. --- configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.c b/configuration.c index 3147e2f203..7294b59451 100644 --- a/configuration.c +++ b/configuration.c @@ -933,7 +933,7 @@ static int populate_settings_int(settings_t *settings, struct config_int_setting SETTING_INT("state_slot", (unsigned*)&settings->state_slot, false, 0 /* TODO */, false); #ifdef HAVE_NETWORKING SETTING_INT("netplay_ip_port", &global->netplay.port, false, 0 /* TODO */, false); - SETTING_INT("netplay_delay_frames", &global->netplay.sync_frames, false, 16, false); + SETTING_INT("netplay_delay_frames", &global->netplay.sync_frames, true, 16, false); SETTING_INT("netplay_check_frames", &global->netplay.check_frames, false, 0, false); #endif #ifdef HAVE_LANGEXTRA