diff options
| -rw-r--r-- | src/common/settings_setting.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings_setting.h b/src/common/settings_setting.h index 79d2b715f..7be6f26f7 100644 --- a/src/common/settings_setting.h +++ b/src/common/settings_setting.h | |||
| @@ -113,6 +113,9 @@ protected: | |||
| 113 | return value_.has_value() ? std::to_string(*value_) : "none"; | 113 | return value_.has_value() ? std::to_string(*value_) : "none"; |
| 114 | } else if constexpr (std::is_same_v<Type, bool>) { | 114 | } else if constexpr (std::is_same_v<Type, bool>) { |
| 115 | return value_ ? "true" : "false"; | 115 | return value_ ? "true" : "false"; |
| 116 | } else if constexpr (std::is_same_v<Type, AudioEngine>) { | ||
| 117 | // Compatibility with old AudioEngine setting being a string | ||
| 118 | return CanonicalizeEnum(value_); | ||
| 116 | } else if constexpr (std::is_floating_point_v<Type>) { | 119 | } else if constexpr (std::is_floating_point_v<Type>) { |
| 117 | return fmt::format("{:f}", value_); | 120 | return fmt::format("{:f}", value_); |
| 118 | } else if constexpr (std::is_enum_v<Type>) { | 121 | } else if constexpr (std::is_enum_v<Type>) { |