mirror of
https://github.com/libretro/RetroArch
synced 2025-03-06 13:13:57 +00:00
Don't do Netplay CRCing by default
There are too many buggy cores for Netplay to CRC in the default configuration, so check_frames=0 by default. check_frames is a "last resort" option anyway, so shouldn't need to be on by default.
This commit is contained in:
parent
4076b14568
commit
a42be48638
@ -912,7 +912,7 @@ static int populate_settings_int(settings_t *settings, struct config_int_setting
|
||||
#ifdef HAVE_NETPLAY
|
||||
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_check_frames", &global->netplay.check_frames, false, 60, false);
|
||||
SETTING_INT("netplay_check_frames", &global->netplay.check_frames, false, 0, false);
|
||||
#endif
|
||||
#ifdef HAVE_LANGEXTRA
|
||||
SETTING_INT("user_language", &settings->user_language, true, RETRO_LANGUAGE_ENGLISH, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user