diff options
| author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-09-13 15:59:44 -0400 | 
|---|---|---|
| committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-09-13 15:59:44 -0400 | 
| commit | fe70c6f4812a7c8076be3d8c12cc914f7c3b6d19 (patch) | |
| tree | 47f1cbf42aadf15045b2d979fcaade78b752ce83 | |
| parent | c2961454fe006265454448ecce3f0a34834ec691 (diff) | |
settings_setting: Don't remove the AudioEngine workaround
| -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:              return value_.has_value() ? std::to_string(*value_) : "none";          } else if constexpr (std::is_same_v<Type, bool>) {              return value_ ? "true" : "false"; +        } else if constexpr (std::is_same_v<Type, AudioEngine>) { +            // Compatibility with old AudioEngine setting being a string +            return CanonicalizeEnum(value_);          } else if constexpr (std::is_floating_point_v<Type>) {              return fmt::format("{:f}", value_);          } else if constexpr (std::is_enum_v<Type>) { | 
