1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 10:21:31 +00:00

Minor style nits

This commit is contained in:
twinaphex 2020-08-03 19:47:08 +02:00
parent 585401d8db
commit c9f2bb3455

@ -277,21 +277,13 @@ void fill_pathname_application_special(char *s,
const char *menu_ident = settings->arrays.menu_driver; const char *menu_ident = settings->arrays.menu_driver;
if (string_is_equal(menu_ident, "xmb")) if (string_is_equal(menu_ident, "xmb"))
{
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS); fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS);
}
else if (string_is_equal(menu_ident, "glui")) else if (string_is_equal(menu_ident, "glui"))
{
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS); fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS);
}
else if (string_is_equal(menu_ident, "ozone")) else if (string_is_equal(menu_ident, "ozone"))
{
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS); fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS);
}
else if (len) else if (len)
{
s[0] = '\0'; s[0] = '\0';
}
#endif #endif
} }