mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
settings: Correct Linkage member impl location
This commit is contained in:
parent
b1716a9e14
commit
397333b2d5
2 changed files with 3 additions and 3 deletions
|
@ -151,9 +151,6 @@ float Volume() {
|
||||||
return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault());
|
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) {
|
const char* TranslateCategory(Category category) {
|
||||||
switch (category) {
|
switch (category) {
|
||||||
case Category::Audio:
|
case Category::Audio:
|
||||||
|
|
|
@ -52,4 +52,7 @@ const std::string& BasicSetting::GetLabel() const {
|
||||||
return label;
|
return label;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Linkage::Linkage(u32 initial_count) : count{initial_count} {}
|
||||||
|
Linkage::~Linkage() = default;
|
||||||
|
|
||||||
} // namespace Settings
|
} // namespace Settings
|
||||||
|
|
Loading…
Reference in a new issue