Fix "missing initializer" warnings/errors in CVAR_INIT macros

This commit is contained in:
Jaime Ita Passos 2020-12-21 17:19:07 -03:00
parent 8c97583779
commit abf0ca6690
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;