diff options
| author | 2024-01-04 15:51:00 -0500 | |
|---|---|---|
| committer | 2024-01-04 15:51:00 -0500 | |
| commit | 8d3463dbddbbcef2d615d596a1bf7421730c9dd6 (patch) | |
| tree | 33f4e6b829a578c4bb1ad21d9b21f01f1c717b28 /src/frontend_common/config.cpp | |
| parent | Merge pull request #12568 from t895/actions-button (diff) | |
| parent | frontend_common: config: Move WriteIntegerSetting definition to header (diff) | |
| download | yuzu-8d3463dbddbbcef2d615d596a1bf7421730c9dd6.tar.gz yuzu-8d3463dbddbbcef2d615d596a1bf7421730c9dd6.tar.xz yuzu-8d3463dbddbbcef2d615d596a1bf7421730c9dd6.zip | |
Merge pull request #12570 from t895/generic-config-pain
frontend_common: config: Move WriteIntegerSetting definition to header
Diffstat (limited to '')
| -rw-r--r-- | src/frontend_common/config.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp index 51576b4ee..359a0d267 100644 --- a/src/frontend_common/config.cpp +++ b/src/frontend_common/config.cpp | |||
| @@ -762,17 +762,6 @@ void Config::WriteBooleanSetting(const std::string& key, const bool& value, | |||
| 762 | WritePreparedSetting(key, AdjustOutputString(ToString(value)), string_default, use_global); | 762 | WritePreparedSetting(key, AdjustOutputString(ToString(value)), string_default, use_global); |
| 763 | } | 763 | } |
| 764 | 764 | ||
| 765 | template <typename T> | ||
| 766 | std::enable_if_t<std::is_integral_v<T>> Config::WriteIntegerSetting( | ||
| 767 | const std::string& key, const T& value, const std::optional<T>& default_value, | ||
| 768 | const std::optional<bool>& use_global) { | ||
| 769 | std::optional<std::string> string_default = std::nullopt; | ||
| 770 | if (default_value.has_value()) { | ||
| 771 | string_default = std::make_optional(ToString(default_value.value())); | ||
| 772 | } | ||
| 773 | WritePreparedSetting(key, AdjustOutputString(ToString(value)), string_default, use_global); | ||
| 774 | } | ||
| 775 | |||
| 776 | void Config::WriteDoubleSetting(const std::string& key, const double& value, | 765 | void Config::WriteDoubleSetting(const std::string& key, const double& value, |
| 777 | const std::optional<double>& default_value, | 766 | const std::optional<double>& default_value, |
| 778 | const std::optional<bool>& use_global) { | 767 | const std::optional<bool>& use_global) { |