From 87c06e512fb1b757c1c4359e46359654cfcb8b82 Mon Sep 17 00:00:00 2001 From: notaz Date: Thu, 16 Dec 2010 18:46:59 +0200 Subject: [PATCH] menu: update file colors, fix a bug in emu_if --- frontend/menu.c | 4 ++-- libpcsxcore/new_dynarec/emu_if.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/menu.c b/frontend/menu.c index 3559f55b..40edb2f1 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; diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 68b0e822..8e1545ed 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -438,7 +438,7 @@ end: printf("-- %d\n", bad); for (i = 0; i < 8; i++) printf("r%d=%08x r%2d=%08x r%2d=%08x r%2d=%08x\n", i, allregs_p[i], - i+8, allregs_p[i+8], i+16, allregs_p[i+16], i+24, allregs_p[i+23]); + i+8, allregs_p[i+8], i+16, allregs_p[i+16], i+24, allregs_p[i+24]); printf("PC: %08x/%08x, cycle %u\n", psxRegs.pc, ppc, psxRegs.cycle); dump_mem("/mnt/ntz/dev/pnd/tmp/psxram.dump", psxM, 0x200000); dump_mem("/mnt/ntz/dev/pnd/tmp/psxregs.dump", psxH, 0x10000); -- 2.39.2