From fea8a0f7800e99cb386a8f16a9a85459408df811 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Tue, 28 Feb 2017 11:31:59 -0500 Subject: [PATCH] Don't stall for spectator data when we're not in spectator mode, thanks @GregorR --- network/netplay/netplay_frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/netplay/netplay_frontend.c b/network/netplay/netplay_frontend.c index bafe2503a3..6c8d16e9dd 100644 --- a/network/netplay/netplay_frontend.c +++ b/network/netplay/netplay_frontend.c @@ -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;