Merge branch 'fix-consvar-missing-initializer' into 'next'

Fix the "missing initializer" warning/error in the CVAR_INIT macro

See merge request STJr/SRB2!1350
This commit is contained in:
James R 2020-12-22 20:13:21 -05:00
commit 9b6108b7dc
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ typedef struct consvar_s //NULL, NULL, 0, NULL, NULL |, 0, NULL, NULL, 0, 0, NUL
/* name, defaultvalue, flags, PossibleValue, func */
#define CVAR_INIT( ... ) \
{ __VA_ARGS__, 0, NULL, NULL, {0}, 0U, (char)0, NULL }
{ __VA_ARGS__, 0, NULL, NULL, {0, {NULL}}, 0U, (char)0, NULL }
#ifdef OLD22DEMOCOMPAT
typedef struct old_demo_var old_demo_var_t;