From 28466646b22877d6209baf1dcc838e406a01c8e9 Mon Sep 17 00:00:00 2001 From: Cloudwalk Date: Sat, 8 Aug 2020 17:01:39 -0400 Subject: [PATCH] (WIP) cmd: Remove now-unused variables from cmd_state_t --- cmd.h | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/cmd.h b/cmd.h index ca474244..59f0dbb9 100644 --- a/cmd.h +++ b/cmd.h @@ -103,17 +103,8 @@ cmd_userdefined_t; /// command interpreter state - the tokenizing and execution of commands, as well as pointers to which cvars and aliases they can access typedef struct cmd_state_s { - qboolean wait; - mempool_t *mempool; - cmddeferred_t *deferred_list; - double deferred_oldrealtime; - - sizebuf_t text; - unsigned char text_buf[CMDBUFSIZE]; - void *text_mutex; - int argc; const char *argv[MAX_ARGS]; const char *null_string; @@ -147,14 +138,15 @@ typedef struct cbuf_cmd_s { struct cbuf_cmd_s *prev, *next; cmd_state_t *source; + double delay; size_t size; char text[MAX_INPUTLINE]; - double defer; } cbuf_cmd_t; typedef struct cbuf_s { cbuf_cmd_t *start; + cbuf_cmd_t *deferred; cbuf_cmd_t *free; qboolean pending; qboolean wait; @@ -162,6 +154,7 @@ typedef struct cbuf_s size_t size; char tokenizebuffer[CMD_TOKENIZELENGTH]; int tokenizebufferpos; + double deferred_oldtime; void *lock; } cbuf_t; -- 2.39.2