From: notaz Date: Sun, 9 Oct 2011 20:06:14 +0000 (+0300) Subject: use faster PSX clock on armv7 devices X-Git-Tag: r10~3 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=67d399b0f9e6c4b3100e685c323c65e6296e44ee 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. --- 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;