aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.c
diff options
context:
space:
mode:
authornotaz2011-02-16 21:29:41 +0200
committernotaz2011-02-17 00:44:10 +0200
commitc22b95ab8ab42f87d0af5ce8333b5b6b386b98ee (patch)
tree91289e40d759a9eee830a169ad59a1f0819b3869 /frontend/menu.c
parentae4e7dc990c2acd9cb208dd8fb02f1c96f915b7c (diff)
downloadpcsx_rearmed-c22b95ab8ab42f87d0af5ce8333b5b6b386b98ee.tar.gz
pcsx_rearmed-c22b95ab8ab42f87d0af5ce8333b5b6b386b98ee.tar.bz2
pcsx_rearmed-c22b95ab8ab42f87d0af5ce8333b5b6b386b98ee.zip
frontend: minor adjustments
Diffstat (limited to 'frontend/menu.c')
-rw-r--r--frontend/menu.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/frontend/menu.c b/frontend/menu.c
index 9ebfa86..8eb6c04 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");