aboutsummaryrefslogtreecommitdiff
path: root/overrides/snes9x2005.h
diff options
context:
space:
mode:
authorneonloop2023-01-09 14:36:40 +0000
committerneonloop2023-01-09 14:36:40 +0000
commit6d0d8f2ce924a0b1a433280160d90f71121509a4 (patch)
treef2e99784fa3e708ae8ac70d65f721c65cf171184 /overrides/snes9x2005.h
parent50d426b6d2c84d4ddc32009268d99047e83ced7f (diff)
downloadpicoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.tar.gz
picoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.tar.bz2
picoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.zip
Adds initial Funkey S support
Diffstat (limited to 'overrides/snes9x2005.h')
-rw-r--r--overrides/snes9x2005.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/overrides/snes9x2005.h b/overrides/snes9x2005.h
index 237a89a..b9c04a5 100644
--- a/overrides/snes9x2005.h
+++ b/overrides/snes9x2005.h
@@ -3,6 +3,7 @@
static const struct core_override_option snes9x2005_core_option_overrides[] = {
{
.key = "snes9x_2005_region",
+ .desc = "Region",
.info = "'PAL' is 50hz, 'NTSC' is 60hz. Games will run faster or slower than normal if the incorrect region is selected.",
},
{
@@ -12,7 +13,7 @@ static const struct core_override_option snes9x2005_core_option_overrides[] = {
},
{
.key = "snes9x_2005_frameskip_threshold",
- .desc = "FS Threshold (%)",
+ .desc = "FS Threshold (%%)",
.info = "When 'Frameskip' is set to 'Threshold', sets how low the audio buffer can get before frames will be skipped.",
},
{
@@ -33,7 +34,11 @@ static const struct core_override_option snes9x2005_core_option_overrides[] = {
},
{
.key = "snes9x_2005_dynarec",
+#ifdef FUNKEY_S
+ .default_value = "disabled",
+#else
.default_value = "enabled",
+#endif
},
{ NULL }
};