mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
(Netplay) Fix for another incorrect operator (#14444)
This commit is contained in:
parent
3cdccb6b90
commit
f584f7a5f8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user