diff options
author | retro-wertz | 2019-08-02 19:06:03 +0800 |
---|---|---|
committer | retro-wertz | 2019-08-02 19:06:03 +0800 |
commit | 0f288b5c9f0e792466a2e785e3090cd65f17c2de (patch) | |
tree | b6d3eef5c7924aaab45e88c39008382eb8557a6e | |
parent | 202b29d49ef4a60bb3d616be9a26685e756dbaa4 (diff) | |
download | pcsx_rearmed-0f288b5c9f0e792466a2e785e3090cd65f17c2de.tar.gz pcsx_rearmed-0f288b5c9f0e792466a2e785e3090cd65f17c2de.tar.bz2 pcsx_rearmed-0f288b5c9f0e792466a2e785e3090cd65f17c2de.zip |
Silence warning: missing braces around initializer
-rw-r--r-- | frontend/libretro_core_options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h index bdc214f..6513e1c 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 }, }; |