| 64 | } |
| 65 | |
| 66 | s32 SettingInfo::IntegerMaxValue() const |
| 67 | { |
| 68 | static constexpr s32 fallback_value = std::numeric_limits<s32>::max(); |
| 69 | return max_value ? StringUtil::FromChars<s32>(max_value).value_or(fallback_value) : fallback_value; |
| 70 | } |
| 71 | |
| 72 | s32 SettingInfo::IntegerStepValue() const |
| 73 | { |
no test coverage detected