diff options
author | Autechre | 2020-10-22 15:23:42 +0200 |
---|---|---|
committer | GitHub | 2020-10-22 15:23:42 +0200 |
commit | e689e517d13da8564da6ab4769c271b27793d23d (patch) | |
tree | 9e07ed7d4d146227d5e19eaf187d3675a8d24010 /frontend/libretro_core_options.h | |
parent | c1a850c86c0f569ebc4570b6b94a3e5b08ccb575 (diff) | |
parent | 44e8d7afc4a20812c0d6be3112c864d4b1af37c1 (diff) | |
download | pcsx_rearmed-e689e517d13da8564da6ab4769c271b27793d23d.tar.gz pcsx_rearmed-e689e517d13da8564da6ab4769c271b27793d23d.tar.bz2 pcsx_rearmed-e689e517d13da8564da6ab4769c271b27793d23d.zip |
Merge pull request #460 from justinweiss/3ds-default-cpu-to-57
[3DS] Set default CPU rate to the usual 57
Diffstat (limited to 'frontend/libretro_core_options.h')
-rw-r--r-- | frontend/libretro_core_options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h index 40aebb4..941bd81 100644 --- a/frontend/libretro_core_options.h +++ b/frontend/libretro_core_options.h @@ -633,7 +633,7 @@ struct retro_core_option_definition option_defs_us[] = { { "pcsx_rearmed_psxclock", "PSX CPU Clock", -#ifdef HAVE_PRE_ARMV7 +#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) "Overclock or underclock the PSX clock. Default is 50", #else "Overclock or underclock the PSX clock. Default is 57", @@ -712,7 +712,7 @@ struct retro_core_option_definition option_defs_us[] = { { "100", NULL }, { NULL, NULL }, }, -#ifdef HAVE_PRE_ARMV7 +#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) "50", #else "57", |