mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #19864 from Nukem9/lroptions
libretro: Analog deadzone and sensitivity options are additive (set to off by default)
This commit is contained in:
commit
e63dbd888e
1 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue