aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/main.c12
-rw-r--r--frontend/menu.c6
2 files changed, 8 insertions, 10 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 37c9ba3..9f24540 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -64,14 +64,12 @@ void set_cd_image(const char *fname)
{
const char *ext = NULL;
- if (fname != NULL) {
- int len = strlen(fname);
- ext = fname;
- if (len > 2)
- ext = fname + len - 2;
- }
+ if (fname != NULL)
+ ext = strrchr(fname, '.');
- if (ext && strcasecmp(ext, ".z") == 0) {
+ if (ext && (
+ strcasecmp(ext, ".z") == 0 || strcasecmp(ext, ".bz") == 0 ||
+ strcasecmp(ext, ".znx") == 0 || strcasecmp(ext, ".pbp") == 0)) {
SetIsoFile(NULL);
cdrcimg_set_fname(fname);
strcpy(Config.Cdr, "builtin_cdrcimg");
diff --git a/frontend/menu.c b/frontend/menu.c
index 1de9587..af35119 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -175,7 +175,7 @@ static const struct {
CE_CONFIG_STR(Bios),
CE_CONFIG_STR(Gpu),
CE_CONFIG_STR(Spu),
- CE_CONFIG_STR(Cdr),
+// CE_CONFIG_STR(Cdr),
CE_CONFIG_VAL(Xa),
CE_CONFIG_VAL(Sio),
CE_CONFIG_VAL(Mdec),
@@ -387,8 +387,8 @@ fail:
// rrrr rggg gggb bbbb
static unsigned short fname2color(const char *fname)
{
- static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".z", ".cue" };
- static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table" };
+ static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" };
+ static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index" };
const char *ext = strrchr(fname, '.');
int i;