diff options
author | notaz | 2011-10-09 23:06:14 +0300 |
---|---|---|
committer | notaz | 2011-10-10 00:25:59 +0300 |
commit | 67d399b0f9e6c4b3100e685c323c65e6296e44ee (patch) | |
tree | bcc2c14c918d0a3ee934df6aba20edbcb7a02fa7 /frontend | |
parent | 9e0630ab54cbf6b6e3ec525f1088aa54e163c938 (diff) | |
download | pcsx_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.c | 5 |
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; |