mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-05 19:45:33 +03:00
Merge pull request #122 from WPMGPRoSToTeMa/master
Small fix in Netchan_Process
This commit is contained in:
commit
9e1a43d1ff
@ -818,7 +818,11 @@ qboolean Netchan_Process(netchan_t *chan)
|
|||||||
if (reliable_ack == (unsigned)chan->reliable_sequence)
|
if (reliable_ack == (unsigned)chan->reliable_sequence)
|
||||||
{
|
{
|
||||||
// Make sure we actually could have ack'd this message
|
// Make sure we actually could have ack'd this message
|
||||||
|
#ifdef REHLDS_FIXES
|
||||||
|
if (sequence_ack >= chan->last_reliable_sequence)
|
||||||
|
#else // REHLDS_FIXES
|
||||||
if (chan->incoming_acknowledged + 1 >= chan->last_reliable_sequence)
|
if (chan->incoming_acknowledged + 1 >= chan->last_reliable_sequence)
|
||||||
|
#endif // REHLDS_FIXES
|
||||||
{
|
{
|
||||||
chan->reliable_length = 0; // it has been received
|
chan->reliable_length = 0; // it has been received
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user