diff options
Diffstat (limited to 'overrides/snes9x2005.h')
-rw-r--r-- | overrides/snes9x2005.h | 7 |
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 } }; |