From: havoc Date: Thu, 23 Jan 2020 21:47:02 +0000 (+0000) Subject: Add the missing cmd_userdefined_all and cmd_userdefined_null needed by the previous... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2797af6d60f1358da5d7286168608f189571c863;p=xonotic%2Fdarkplaces.git Add the missing cmd_userdefined_all and cmd_userdefined_null needed by the previous change. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12516 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cmd.c b/cmd.c index e4428aad..cf5f3a0e 100644 --- a/cmd.c +++ b/cmd.c @@ -27,6 +27,9 @@ cmd_state_t cmd_clientfromserver; cmd_state_t cmd_server; cmd_state_t cmd_serverfromclient; +cmd_userdefined_t cmd_userdefined_all; +cmd_userdefined_t cmd_userdefined_null; + typedef struct cmd_iter_s { cmd_state_t *cmd; }