diff options
author | Lee Salzman <[email protected]> | 2020-08-23 16:45:15 -0400 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2020-08-23 16:45:15 -0400 |
commit | e55d226969300fbd3f1308afd8bf69e423012f2e (patch) | |
tree | de471c8a4e40b0725fcb44a1315d537f25640a96 /protocol.c | |
parent | 259e5dbd23d18a7d78b548ddbb99d66fa4beebd6 (diff) | |
download | enet-e55d226969300fbd3f1308afd8bf69e423012f2e.tar.gz enet-e55d226969300fbd3f1308afd8bf69e423012f2e.zip |
more command queuing fixes
Diffstat (limited to 'protocol.c')
-rw-r--r-- | protocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -625,7 +625,7 @@ enet_protocol_handle_send_fragment (ENetHost * host, ENetPeer * peer, const ENet fragmentLength); if (startCommand -> fragmentsRemaining <= 0) - enet_peer_dispatch_incoming_reliable_commands (peer, channel); + enet_peer_dispatch_incoming_reliable_commands (peer, channel, NULL); } return 0; @@ -743,7 +743,7 @@ enet_protocol_handle_send_unreliable_fragment (ENetHost * host, ENetPeer * peer, fragmentLength); if (startCommand -> fragmentsRemaining <= 0) - enet_peer_dispatch_incoming_unreliable_commands (peer, channel); + enet_peer_dispatch_incoming_unreliable_commands (peer, channel, NULL); } return 0; |