mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 00:20:59 +00:00
Fix legacy protocol with new packet queueing
This commit is contained in:
parent
242c938d7f
commit
8a831d34ab
2 changed files with 15 additions and 4 deletions
|
@ -124,6 +124,9 @@ typedef enum {
|
|||
typedef struct netchan_buffer_s {
|
||||
msg_t msg;
|
||||
byte msgBuffer[MAX_MSGLEN];
|
||||
#ifdef LEGACY_PROTOCOL
|
||||
char clientCommandString[MAX_STRING_CHARS]; // valid command string for SV_Netchan_Encode
|
||||
#endif
|
||||
struct netchan_buffer_s *next;
|
||||
} netchan_buffer_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue