From c9f2bb3455d2329a78b016b84364f09b774e107f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 3 Aug 2020 19:47:08 +0200 Subject: [PATCH] Minor style nits --- file_path_special.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/file_path_special.c b/file_path_special.c index 1ddf9fb2af..841da2947c 100644 --- a/file_path_special.c +++ b/file_path_special.c @@ -277,21 +277,13 @@ void fill_pathname_application_special(char *s, const char *menu_ident = settings->arrays.menu_driver; if (string_is_equal(menu_ident, "xmb")) - { fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS); - } else if (string_is_equal(menu_ident, "glui")) - { fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS); - } else if (string_is_equal(menu_ident, "ozone")) - { fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS); - } else if (len) - { s[0] = '\0'; - } #endif }