mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
disable overrides with netplay for now, will re-enable after figuring out how netplay starts
This commit is contained in:
parent
09feb15e97
commit
96dc0d6f84
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user