(Netplay) Fix for another incorrect operator (#14444)

This commit is contained in:
Cthulhu-throwaway 2022-09-27 08:01:52 -03:00 committed by GitHub
parent 3cdccb6b90
commit f584f7a5f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7730,7 +7730,7 @@ static bool netplay_poll(netplay_t *netplay, bool block_libretro_input)
/* Are we too far ahead? */
if (netplay->stall == NETPLAY_STALL_NONE &&
netplay->self_frame_count > NETPLAY_MAX_STALL_FRAMES)
netplay->self_frame_count >= NETPLAY_MAX_STALL_FRAMES)
{
uint32_t min_frame_count = netplay->self_frame_count -
NETPLAY_MAX_STALL_FRAMES;