mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-01 17:23:48 +00:00
Don't stall for spectator data when we're not in spectator mode, thanks @GregorR
This commit is contained in:
parent
f39de90837
commit
fea8a0f780
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user