Don't stall if connection lost with remote paused

This commit is contained in:
Gregor Richards 2016-09-14 14:37:59 -04:00
parent 96186438ec
commit c3186c57ab

View File

@ -982,7 +982,7 @@ bool netplay_pre_frame(netplay_t *netplay)
netplay_frontend_paused(netplay, false);
}
netplay->net_cbs->pre_frame(netplay);
return (!netplay->stall && !netplay->remote_paused);
return (!netplay->has_connection || (!netplay->stall && !netplay->remote_paused));
}
/**