From: retro-wertz Date: Fri, 2 Aug 2019 11:06:03 +0000 (+0800) Subject: Silence warning: missing braces around initializer X-Git-Tag: r24l~707^2~2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f288b5c9f0e792466a2e785e3090cd65f17c2de;p=pcsx_rearmed.git Silence warning: missing braces around initializer --- diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h index bdc214f7..6513e1c4 100644 --- a/frontend/libretro_core_options.h +++ b/frontend/libretro_core_options.h @@ -663,7 +663,7 @@ struct retro_core_option_definition option_defs_us[] = { }, #endif /* DRC_DISABLE */ - { NULL, NULL, NULL, { NULL, NULL }, NULL }, + { NULL, NULL, NULL, { {0} }, NULL }, }; /* RETRO_LANGUAGE_JAPANESE */ @@ -1183,7 +1183,7 @@ struct retro_core_option_definition option_defs_tr[] = { }, #endif /* DRC_DISABLE */ - { NULL, NULL, NULL, { NULL, NULL }, NULL }, + { NULL, NULL, NULL, { {0} }, NULL }, };