(Netplay) Fix for an incorrect operator (#14443)

This commit is contained in:
Cthulhu-throwaway 2022-09-26 12:57:30 -03:00 committed by GitHub
parent 1571035fb7
commit ecccdd5484
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7751,7 +7751,7 @@ static bool netplay_poll(netplay_t *netplay, bool block_libretro_input)
if (!connection->active ||
connection->mode != NETPLAY_CONNECTION_PLAYING)
continue;
if (netplay->read_frame_count[i + 1] < min_frame_count)
if (netplay->read_frame_count[i + 1] <= min_frame_count)
{
connection->stall = NETPLAY_STALL_RUNNING_FAST;
connection->stall_slow++;