From 0f288b5c9f0e792466a2e785e3090cd65f17c2de Mon Sep 17 00:00:00 2001 From: retro-wertz Date: Fri, 2 Aug 2019 19:06:03 +0800 Subject: [PATCH] Silence warning: missing braces around initializer --- frontend/libretro_core_options.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }, }; -- 2.39.5