Fix legacy protocol with new packet queueing

This commit is contained in:
Thilo Schulz 2011-07-17 23:43:33 +00:00
parent 242c938d7f
commit 8a831d34ab
2 changed files with 15 additions and 4 deletions

View file

@ -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;