mirror of
https://github.com/libretro/RetroArch
synced 2025-02-12 09:40:06 +00:00
(RGUI) Prevent 'potential uninitialized reference to variables'
in load_custom_theme
This commit is contained in:
parent
36e67108fb
commit
81f8cae52a
@ -2173,11 +2173,16 @@ static const rgui_theme_t *get_theme(rgui_t *rgui)
|
|||||||
|
|
||||||
static void load_custom_theme(rgui_t *rgui, rgui_theme_t *theme_colors, const char *theme_path)
|
static void load_custom_theme(rgui_t *rgui, rgui_theme_t *theme_colors, const char *theme_path)
|
||||||
{
|
{
|
||||||
unsigned normal_color, hover_color, title_color,
|
|
||||||
bg_dark_color, bg_light_color,
|
|
||||||
border_dark_color, border_light_color,
|
|
||||||
shadow_color, particle_color;
|
|
||||||
char wallpaper_file[PATH_MAX_LENGTH];
|
char wallpaper_file[PATH_MAX_LENGTH];
|
||||||
|
unsigned normal_color = 0;
|
||||||
|
unsigned hover_color = 0;
|
||||||
|
unsigned title_color = 0;
|
||||||
|
unsigned bg_dark_color = 0;
|
||||||
|
unsigned bg_light_color = 0;
|
||||||
|
unsigned border_dark_color = 0;
|
||||||
|
unsigned border_light_color = 0;
|
||||||
|
unsigned shadow_color = 0;
|
||||||
|
unsigned particle_color = 0;
|
||||||
config_file_t *conf = NULL;
|
config_file_t *conf = NULL;
|
||||||
char *wallpaper_key = NULL;
|
char *wallpaper_key = NULL;
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user