Merge pull request #3739 from GregorR/netplay-check-frames-default

Set check_frames to 30 by default
This commit is contained in:
Andrés Suárez 2016-10-04 21:53:32 -05:00 committed by GitHub
commit bbf69f5ed7
1 changed files with 1 additions and 1 deletions

View File

@ -932,7 +932,7 @@ static int populate_settings_int(settings_t *settings, struct config_int_setting
#ifdef HAVE_NETWORKING
SETTING_INT("netplay_ip_port", &settings->netplay.port, false, 0 /* TODO */, false);
SETTING_INT("netplay_delay_frames", &settings->netplay.sync_frames, true, 16, false);
SETTING_INT("netplay_check_frames", &settings->netplay.check_frames, false, 0, false);
SETTING_INT("netplay_check_frames", &settings->netplay.check_frames, false, 30, false);
#endif
#ifdef HAVE_LANGEXTRA
SETTING_INT("user_language", &settings->user_language, true, RETRO_LANGUAGE_ENGLISH, false);