From 18cf60776f76527c6786c7df240d3960238d6635 Mon Sep 17 00:00:00 2001 From: Nukem Date: Sat, 11 Jan 2025 13:19:24 -0500 Subject: [PATCH] libretro: Analog deadzone and sensitivity options are additive (set to off by default) --- libretro/libretro_core_options.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libretro/libretro_core_options.h b/libretro/libretro_core_options.h index 7feb948206..dfedcf49d8 100644 --- a/libretro/libretro_core_options.h +++ b/libretro/libretro_core_options.h @@ -460,7 +460,7 @@ struct retro_core_option_v2_definition option_defs_us[] = { "ppsspp_analog_deadzone", "Analog Deadzone", NULL, - "Select how far you have to push the analog stick before it starts being processed.", + "Additional deadzone to apply after frontend input.", NULL, "input", { @@ -477,13 +477,13 @@ struct retro_core_option_v2_definition option_defs_us[] = { { "0.50", "50%" }, { NULL, NULL }, }, - "0.15" + "0.0" }, { "ppsspp_analog_sensitivity", "Analog Axis Scale", NULL, - "Sets the analog stick axis scaling factor.", + "Additional sensitivity factor to apply after frontend input.", NULL, "input", { @@ -496,7 +496,7 @@ struct retro_core_option_v2_definition option_defs_us[] = { {"1.42", NULL}, {"1.43", NULL}, {"1.44", NULL}, {"1.45", NULL}, {"1.46", NULL}, {"1.47", NULL}, {"1.48", NULL}, {"1.49", NULL}, {"1.50", NULL}, {NULL, NULL}, }, - "1.10" + "1.00" }, { "ppsspp_skip_buffer_effects",