Don't misinterpret "Netplay isn't loaded" as "must pause" :)

This commit is contained in:
Gregor Richards 2016-09-14 18:01:24 -04:00
parent c3186c57ab
commit 4d11b1d674

View File

@ -1083,7 +1083,12 @@ bool init_netplay(void)
bool netplay_driver_ctl(enum rarch_netplay_ctl_state state, void *data)
{
if (!netplay_data)
return false;
{
if (state == RARCH_NETPLAY_CTL_IS_DATA_INITED)
return false;
else
return true;
}
switch (state)
{