From 397333b2d51fc93c1285465f43668fb86e709fc3 Mon Sep 17 00:00:00 2001
From: lat9nq <22451773+lat9nq@users.noreply.github.com>
Date: Tue, 25 Jul 2023 15:57:55 -0400
Subject: [PATCH] settings: Correct Linkage member impl location

---
 src/common/settings.cpp        | 3 ---
 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 4a4ba307ca..491adc30ee 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -151,9 +151,6 @@ float Volume() {
     return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault());
 }
 
-Linkage::Linkage(u32 initial_count) : count{initial_count} {}
-Linkage::~Linkage() = default;
-
 const char* TranslateCategory(Category category) {
     switch (category) {
     case Category::Audio:
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp
index 90842e7978..dedf5ef909 100644
--- a/src/common/settings_common.cpp
+++ b/src/common/settings_common.cpp
@@ -52,4 +52,7 @@ const std::string& BasicSetting::GetLabel() const {
     return label;
 }
 
+Linkage::Linkage(u32 initial_count) : count{initial_count} {}
+Linkage::~Linkage() = default;
+
 } // namespace Settings