aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro_core_options.h
diff options
context:
space:
mode:
authorhizzlekizzle2020-05-10 13:41:14 -0500
committerGitHub2020-05-10 13:41:14 -0500
commit6673bd839633242694a1f759b02b61d0adc78b12 (patch)
treec079327ed3fc9ffc0304a765108988c6e3445864 /frontend/libretro_core_options.h
parent191784698dda7161f6a842157c240e31439425a8 (diff)
parentec253988202457b6aa5de5272b4f980d4219bed9 (diff)
downloadpcsx_rearmed-6673bd839633242694a1f759b02b61d0adc78b12.tar.gz
pcsx_rearmed-6673bd839633242694a1f759b02b61d0adc78b12.tar.bz2
pcsx_rearmed-6673bd839633242694a1f759b02b61d0adc78b12.zip
Merge pull request #415 from negativeExponent/core_option_cleanup
Core option cleanup
Diffstat (limited to 'frontend/libretro_core_options.h')
-rw-r--r--frontend/libretro_core_options.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h
index ea5577b..2c69446 100644
--- a/frontend/libretro_core_options.h
+++ b/frontend/libretro_core_options.h
@@ -548,7 +548,7 @@ struct retro_core_option_definition option_defs_us[] = {
#endif
},
-#ifndef DRC_DISABLE
+#if defined(LIGHTREC) || defined(NEW_DYNAREC)
{
"pcsx_rearmed_drc",
"Dynamic Recompiler",
@@ -560,6 +560,9 @@ struct retro_core_option_definition option_defs_us[] = {
},
"enabled",
},
+#endif /* LIGHTREC || NEW_DYNAREC */
+
+#ifdef NEW_DYNAREC
{
"pcsx_rearmed_psxclock",
"PSX CPU Clock",
@@ -648,7 +651,7 @@ struct retro_core_option_definition option_defs_us[] = {
"57",
#endif
},
-#endif /* DRC_DISABLE */
+#endif /* NEW_DYNAREC */
#ifdef GPU_NEON
{
@@ -1009,7 +1012,7 @@ struct retro_core_option_definition option_defs_us[] = {
"disabled",
},
-#ifndef DRC_DISABLE
+#ifdef NEW_DYNAREC
{
"pcsx_rearmed_nosmccheck",
"(Speed Hack) Disable SMC Checks",
@@ -1043,7 +1046,7 @@ struct retro_core_option_definition option_defs_us[] = {
},
"disabled",
},
-#endif /* DRC_DISABLE */
+#endif /* NEW_DYNAREC */
{ NULL, NULL, NULL, {{0}}, NULL },
};