| 58 | } |
| 59 | |
| 60 | s32 SettingInfo::IntegerMinValue() const |
| 61 | { |
| 62 | static constexpr s32 fallback_value = std::numeric_limits<s32>::min(); |
| 63 | return min_value ? StringUtil::FromChars<s32>(min_value).value_or(fallback_value) : fallback_value; |
| 64 | } |
| 65 | |
| 66 | s32 SettingInfo::IntegerMaxValue() const |
| 67 | { |
no test coverage detected