From 67d399b0f9e6c4b3100e685c323c65e6296e44ee Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 9 Oct 2011 23:06:14 +0300 Subject: [PATCH] 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. --- frontend/menu.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/menu.c b/frontend/menu.c index de13ad9e..931468fa 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; -- 2.39.2