Don't stall for spectator data when we're not in spectator mode, thanks @GregorR

This commit is contained in:
Brad Parker 2017-02-28 11:31:59 -05:00
parent f39de90837
commit fea8a0f780

View File

@ -304,7 +304,7 @@ static bool netplay_poll(void)
}
case NETPLAY_STALL_SPECTATOR_WAIT:
if (netplay_data->unread_frame_count > netplay_data->self_frame_count)
if (netplay_data->self_mode == NETPLAY_CONNECTION_PLAYING || netplay_data->unread_frame_count > netplay_data->self_frame_count)
netplay_data->stall = NETPLAY_STALL_NONE;
break;