disable overrides with netplay for now, will re-enable after figuring out how netplay starts

This commit is contained in:
radius 2015-04-10 21:23:29 -05:00
parent 09feb15e97
commit 96dc0d6f84

View File

@ -1723,9 +1723,16 @@ bool config_load_override(void)
{
if (settings->core_specific_config)
{
RARCH_LOG("Can't use overrides in conjunction with per-core configs, disabling overrides\n");
RARCH_WARN("Can't use overrides in conjunction with per-core configs, disabling overrides\n");
return false;
}
if (global->netplay_enable)
{
RARCH_WARN("Can't use overrides in conjunction with netplay, disabling overrides\n");
return false;
}
RARCH_LOG("Game-specific overrides found at %s. Appending.\n", game_path);
if (should_append)
{