mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06: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:
@ -2356,8 +2356,8 @@ class SettingsFragmentPresenter(
|
||||
ceil(setting.getDoubleMin()).toFloat(),
|
||||
floor(setting.getDoubleMax()).toFloat(),
|
||||
setting.getUiSuffix(),
|
||||
1.0f,
|
||||
false
|
||||
0.5f,
|
||||
true
|
||||
)
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user