diff options
| author | Charles Lombardo <clombardo169@gmail.com> | 2023-08-11 17:11:15 -0400 |
|---|---|---|
| committer | Charles Lombardo <clombardo169@gmail.com> | 2023-08-29 00:30:03 -0400 |
| commit | 53fc3446d5bbfe2b30b344e25316ffc2bcb3453b (patch) | |
| tree | bb38bfe4cbdf37c5c2f1d3a42a1f396ea14ad9a4 /Source/Android/app/src/main/res/values/strings.xml | |
| parent | 80b329b77f58144e1e1ed1608a0fe6bf779c2610 (diff) | |
Android: Support settings with float values
We did support float settings before but we never showed anything past the decimal place before.
Diffstat (limited to 'Source/Android/app/src/main/res/values/strings.xml')
| -rw-r--r-- | Source/Android/app/src/main/res/values/strings.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 17421bb7ed..015b19bae5 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -632,7 +632,8 @@ It can efficiently compress both junk data and encrypted Wii data. <!-- Misc --> <string name="enabled">Enabled</string> <string name="default_values">Default Values</string> - <string name="slider_setting_value">%1$d%2$s</string> + <string name="slider_setting_value">%.0f%2$s</string> + <string name="slider_setting_float_value">%.2f%2$s</string> <string name="disc_number">Disc %1$d</string> <string name="replug_gc_adapter">GameCube Adapter couldn\'t be opened. Please re-plug the device.</string> <string name="disabled_gc_overlay_notice">The selected GameCube controller is set to \"None\"</string> |
