settings: Correct Linkage member impl location

This commit is contained in:
lat9nq 2023-07-25 15:57:55 -04:00
parent b1716a9e14
commit 397333b2d5
2 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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