| 93 | } |
| 94 | |
| 95 | float SettingInfo::FloatStepValue() const |
| 96 | { |
| 97 | static constexpr float fallback_value = 0.1f; |
| 98 | return step_value ? StringUtil::FromChars<float>(step_value).value_or(fallback_value) : fallback_value; |
| 99 | } |
| 100 | |
| 101 | void SettingInfo::SetDefaultValue(SettingsInterface* si, const char* section, const char* key) const |
| 102 | { |
no outgoing calls
no test coverage detected