Merge pull request #6356 from GregorR/netplay-no-double-check

Remove an incorrect double-check
This commit is contained in:
Twinaphex 2018-03-04 05:46:11 +01:00 committed by GitHub
commit 32bf9cd716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -768,8 +768,7 @@ void netplay_sync_post_frame(netplay_t *netplay, bool stalled)
/* Now replay the real input if we've gotten ahead of it */
if (netplay->force_rewind ||
(netplay->replay_frame_count < netplay->unread_frame_count &&
netplay->replay_frame_count < netplay->run_frame_count))
netplay->replay_frame_count < netplay->run_frame_count)
{
retro_ctx_serialize_info_t serial_info;