mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
Android: Use 0.5 unit step size and show decimal for numeric settings
In some settings where the default value could not be evenly divided by the step size for the slider, there would be a crash. This increases the precision of all double numeric settings to 0.5 and now shows the decimal that you couldn't see before.
This commit is contained in:
parent
853d93d14a
commit
f205a20d3f
@ -2356,8 +2356,8 @@ class SettingsFragmentPresenter(
|
||||
ceil(setting.getDoubleMin()).toFloat(),
|
||||
floor(setting.getDoubleMax()).toFloat(),
|
||||
setting.getUiSuffix(),
|
||||
1.0f,
|
||||
false
|
||||
0.5f,
|
||||
true
|
||||
)
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user