diff options
author | Twinaphex | 2018-04-22 22:31:24 +0200 |
---|---|---|
committer | GitHub | 2018-04-22 22:31:24 +0200 |
commit | 80f9de579899d0345ee1d4589fd0ddbcb6fa0c73 (patch) | |
tree | 3f00a2321ff8113a8a6e08a4fd1e46c7bc4b7ca8 | |
parent | 1004a9e621c9a4bbd003abb4e317e05bf9c055c6 (diff) | |
parent | 40c380a8e8080ecb38159ee5aad1ce149e9889fc (diff) | |
download | pcsx_rearmed-80f9de579899d0345ee1d4589fd0ddbcb6fa0c73.tar.gz pcsx_rearmed-80f9de579899d0345ee1d4589fd0ddbcb6fa0c73.tar.bz2 pcsx_rearmed-80f9de579899d0345ee1d4589fd0ddbcb6fa0c73.zip |
Merge pull request #165 from Kelduum/master
Changed default clock speed to 100% from 57% in non-lr build
-rw-r--r-- | frontend/menu.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/frontend/menu.c b/frontend/menu.c index 7e1fdd1..0f59910 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -101,13 +101,10 @@ int scanlines, scanline_level = 20; int soft_scaling, analog_deadzone; // for Caanoo int soft_filter; -#ifndef HAVE_PRE_ARMV7 -#define DEFAULT_PSX_CLOCK 57 -#define DEFAULT_PSX_CLOCK_S "57" -#else -#define DEFAULT_PSX_CLOCK 50 -#define DEFAULT_PSX_CLOCK_S "50" -#endif +// Default to 100% CPU speed as most hardware can handle it nowadays using the dynamic recompiler. +// If not, the option is in the advanced speed hacks menu, so in a logical place. +#define DEFAULT_PSX_CLOCK 100 +#define DEFAULT_PSX_CLOCK_S "100" static const char *bioses[24]; static const char *gpu_plugins[16]; |