summaryrefslogtreecommitdiff
path: root/src/common/settings_common.cpp
diff options
context:
space:
mode:
authorGravatar lat9nq2023-07-25 15:57:55 -0400
committerGravatar lat9nq2023-07-25 15:57:55 -0400
commit397333b2d51fc93c1285465f43668fb86e709fc3 (patch)
tree4e67317cbe69f0b9beda1fc86a86f30628f0c0b9 /src/common/settings_common.cpp
parentsettings: Set GPU as default ASTC decoder (diff)
downloadyuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.gz
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.xz
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.zip
settings: Correct Linkage member impl location
Diffstat (limited to '')
-rw-r--r--src/common/settings_common.cpp3
1 files changed, 3 insertions, 0 deletions
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