diff options
| author | 2023-07-25 15:57:55 -0400 | |
|---|---|---|
| committer | 2023-07-25 15:57:55 -0400 | |
| commit | 397333b2d51fc93c1285465f43668fb86e709fc3 (patch) | |
| tree | 4e67317cbe69f0b9beda1fc86a86f30628f0c0b9 | |
| parent | settings: Set GPU as default ASTC decoder (diff) | |
| download | yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.gz yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.xz yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.zip | |
settings: Correct Linkage member impl location
| -rw-r--r-- | src/common/settings.cpp | 3 | ||||
| -rw-r--r-- | src/common/settings_common.cpp | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 4a4ba307c..491adc30e 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -151,9 +151,6 @@ float Volume() { | |||
| 151 | return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault()); | 151 | return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault()); |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | Linkage::Linkage(u32 initial_count) : count{initial_count} {} | ||
| 155 | Linkage::~Linkage() = default; | ||
| 156 | |||
| 157 | const char* TranslateCategory(Category category) { | 154 | const char* TranslateCategory(Category category) { |
| 158 | switch (category) { | 155 | switch (category) { |
| 159 | case Category::Audio: | 156 | case Category::Audio: |
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp index 90842e797..dedf5ef90 100644 --- a/src/common/settings_common.cpp +++ b/src/common/settings_common.cpp | |||
| @@ -52,4 +52,7 @@ const std::string& BasicSetting::GetLabel() const { | |||
| 52 | return label; | 52 | return label; |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | Linkage::Linkage(u32 initial_count) : count{initial_count} {} | ||
| 56 | Linkage::~Linkage() = default; | ||
| 57 | |||
| 55 | } // namespace Settings | 58 | } // namespace Settings |