aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2010-12-16 18:46:59 +0200
committernotaz2010-12-16 18:46:59 +0200
commit87c06e512fb1b757c1c4359e46359654cfcb8b82 (patch)
tree263bd06fbec8b0795b979613a539c24900879ce3 /frontend
parent38b8102cdfde55d7afa20bf95c7698d39407379b (diff)
downloadpcsx_rearmed-87c06e512fb1b757c1c4359e46359654cfcb8b82.tar.gz
pcsx_rearmed-87c06e512fb1b757c1c4359e46359654cfcb8b82.tar.bz2
pcsx_rearmed-87c06e512fb1b757c1c4359e46359654cfcb8b82.zip
menu: update file colors, fix a bug in emu_if
Diffstat (limited to 'frontend')
-rw-r--r--frontend/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/menu.c b/frontend/menu.c
index 3559f55..40edb2f 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -128,8 +128,8 @@ static int menu_load_config(int is_game)
// rrrr rggg gggb bbbb
static unsigned short fname2color(const char *fname)
{
- static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".z" };
- static const char *other_exts[] = { ".cue", ".ccd", ".sub", ".table" };
+ static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".z", ".cue" };
+ static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table" };
const char *ext = strrchr(fname, '.');
int i;