cvg, splshdat.c: fix missing braces in initializer warning

This commit is contained in:
sezero
2018-08-03 18:39:02 +03:00
parent de08f2ebbf
commit 6a898856bb

View File

@@ -10681,7 +10681,7 @@ static Gu3dfInfo hilite_3dfinfo = {
#endif #endif
GR_TEXFMT_INTENSITY_8 /* format */ GR_TEXFMT_INTENSITY_8 /* format */
}, },
{ 0x00000000 }, /* table */ { { { 0x00 } } }, /* table */
NULL, /* data */ NULL, /* data */
0x00000ab0 /* mem_required */ 0x00000ab0 /* mem_required */
}; };
@@ -12072,7 +12072,7 @@ static Gu3dfInfo shadow_3dfinfo = {
#endif #endif
GR_TEXFMT_INTENSITY_8 /* format */ GR_TEXFMT_INTENSITY_8 /* format */
}, },
{ 0x0000000 }, /* table */ { { { 0x00 } } }, /* table */
NULL, /* data */ NULL, /* data */
0x00000ab0 /* mem_required */ 0x00000ab0 /* mem_required */
}; };