summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/settings.cpp3
-rw-r--r--src/common/settings_common.cpp3
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
154Linkage::Linkage(u32 initial_count) : count{initial_count} {}
155Linkage::~Linkage() = default;
156
157const char* TranslateCategory(Category category) { 154const 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
55Linkage::Linkage(u32 initial_count) : count{initial_count} {}
56Linkage::~Linkage() = default;
57
55} // namespace Settings 58} // namespace Settings