X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.c;h=8eb6c04363ed46b57f46ba137f63af93d22c2413;hp=9ebfa861d0b100331db92ca4e0cb69132b42e645;hb=c22b95ab8ab42f87d0af5ce8333b5b6b386b98ee;hpb=ae4e7dc990c2acd9cb208dd8fb02f1c96f915b7c diff --git a/frontend/menu.c b/frontend/menu.c index 9ebfa861..8eb6c043 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -20,6 +20,7 @@ #include "plugin.h" #include "plugin_lib.h" #include "omap.h" +#include "pcnt.h" #include "common/plat.h" #include "../libpcsxcore/misc.h" #include "../libpcsxcore/cdrom.h" @@ -415,7 +416,7 @@ fail: static unsigned short fname2color(const char *fname) { static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" }; - static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index" }; + static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index", ".sbi" }; const char *ext = strrchr(fname, '.'); int i; @@ -1204,8 +1205,9 @@ static void draw_frame_main(void) { if (CdromId[0] != 0) { char buff[64]; - snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s)", - get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC"); + snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s, with %s)", + get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC", + Config.HLE ? "HLE" : "BIOS"); smalltext_out16(4, 1, buff, 0x105f); } } @@ -1256,6 +1258,7 @@ static int run_bios(void) ClosePlugins(); set_cd_image(NULL); LoadPlugins(); + pcnt_hook_plugins(); NetOpened = 0; if (OpenPlugins() == -1) { me_update_msg("failed to open plugins"); @@ -1280,6 +1283,7 @@ static int run_cd_image(const char *fname) ClosePlugins(); set_cd_image(fname); LoadPlugins(); + pcnt_hook_plugins(); NetOpened = 0; if (OpenPlugins() == -1) { me_update_msg("failed to open plugins");