mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-13 00:24:17 +00:00
Revert "Loop through rebound packets until you found a good one or ran out of them"
On second thought, this was probably unnecessary anyway.
This reverts commit 1078a642df
.
This commit is contained in:
parent
1078a642df
commit
5aeb4b5919
1 changed files with 12 additions and 17 deletions
|
@ -1124,10 +1124,6 @@ boolean HGetPacket(void)
|
|||
// Get a packet from self
|
||||
if (rebound_tail != rebound_head)
|
||||
{
|
||||
while (true) // loop until we found a valid packet, or we ran out of packets
|
||||
{ // provided MAXREBOUND is not all that large this shouldn't take too long
|
||||
if (rebound_tail == rebound_head)
|
||||
break; // just give up, none of them were any good somehow
|
||||
M_Memcpy(netbuffer, &reboundstore[rebound_tail], reboundsize[rebound_tail]);
|
||||
doomcom->datalength = reboundsize[rebound_tail];
|
||||
if (netbuffer->packettype == PT_NODETIMEOUT)
|
||||
|
@ -1138,14 +1134,13 @@ boolean HGetPacket(void)
|
|||
rebound_tail = (rebound_tail+1) % MAXREBOUND;
|
||||
|
||||
if (doomcom->remotenode == -1) // wait hang on what?
|
||||
continue; // ignore it, look for the next packet
|
||||
return true; // there might still be packets from others though, so don't return false
|
||||
#ifdef DEBUGFILE
|
||||
if (debugfile)
|
||||
DebugPrintpacket("GETLOCAL");
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!netgame)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue