frontend: update file browser filters
authornotaz <notasas@gmail.com>
Tue, 21 Jun 2011 21:09:37 +0000 (00:09 +0300)
committernotaz <notasas@gmail.com>
Thu, 7 Jul 2011 21:15:06 +0000 (00:15 +0300)
frontend/common/menu.c
frontend/menu.c

index b05c755..96e1bd3 100644 (file)
@@ -766,11 +766,6 @@ static int scandir_cmp(const void *p1, const void *p2)
        return alphasort(d1, d2);\r
 }\r
 \r
-static const char *filter_exts[] = {\r
-       ".mp3", ".MP3", ".srm", ".brm", "s.gz", ".mds", "bcfg", ".txt", ".htm", "html",\r
-       ".jpg", ".gpe"\r
-};\r
-\r
 static int scandir_filter(const struct dirent *ent)\r
 {\r
        const char *p;\r
index baf7f2c..5c3824b 100644 (file)
@@ -426,7 +426,7 @@ fail:
 // rrrr rggg gggb bbbb
 static unsigned short fname2color(const char *fname)
 {
-       static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" };
+       static const char *cdimg_exts[] = { ".bin", ".img", ".mdf", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" };
        static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index", ".sbi" };
        const char *ext = strrchr(fname, '.');
        int i;
@@ -444,6 +444,10 @@ static unsigned short fname2color(const char *fname)
 
 static void draw_savestate_bg(int slot);
 
+static const char *filter_exts[] = {
+       ".mp3", ".MP3", ".txt", ".htm", "html", ".jpg", ".pnd"
+};
+
 #define MENU_ALIGN_LEFT
 #define menu_init menu_init_common
 #include "common/menu.c"