mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +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…
x
Reference in New Issue
Block a user