Apparently the frontend gets really pissy if it can't check the flip state
This commit is contained in:
parent
da7efcb939
commit
70d04ec6a5
|
@ -913,10 +913,8 @@ bool netplay_driver_ctl(enum rarch_netplay_ctl_state state, void *data)
|
|||
goto done;
|
||||
case RARCH_NETPLAY_CTL_FLIP_PLAYERS:
|
||||
{
|
||||
if (!netplay_data->is_server)
|
||||
return false;
|
||||
bool *state = (bool*)data;
|
||||
if (*state)
|
||||
if (netplay_data->is_server && *state)
|
||||
netplay_flip_users(netplay_data);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue