aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2011-10-09 23:06:14 +0300
committernotaz2011-10-10 00:25:59 +0300
commit67d399b0f9e6c4b3100e685c323c65e6296e44ee (patch)
treebcc2c14c918d0a3ee934df6aba20edbcb7a02fa7 /frontend
parent9e0630ab54cbf6b6e3ec525f1088aa54e163c938 (diff)
downloadpcsx_rearmed-67d399b0f9e6c4b3100e685c323c65e6296e44ee.tar.gz
pcsx_rearmed-67d399b0f9e6c4b3100e685c323c65e6296e44ee.tar.bz2
pcsx_rearmed-67d399b0f9e6c4b3100e685c323c65e6296e44ee.zip
use faster PSX clock on armv7 devices
games that were too slow run better now, but others are too fast now.. I hope this is a good tradeoff.
Diffstat (limited to 'frontend')
-rw-r--r--frontend/menu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/menu.c b/frontend/menu.c
index de13ad9..931468f 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -81,8 +81,13 @@ static int psx_clock;
static int memcard1_sel, memcard2_sel;
int g_opts, analog_deadzone;
+#ifdef __ARM_ARCH_7A__
+#define DEFAULT_PSX_CLOCK 57
+#define DEFAULT_PSX_CLOCK_S "57"
+#else
#define DEFAULT_PSX_CLOCK 50
#define DEFAULT_PSX_CLOCK_S "50"
+#endif
// sound plugin
extern int iUseReverb;