diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-09 16:53:01 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:07 -0400 |
commit | 4c4bc134a90a248435786b1dff4f514d1c9c4464 (patch) | |
tree | 2774f70b40cc543179ebfbb978a679196a745a87 /src/common/settings.cpp | |
parent | 8e151460265f04c7bf4a981b5f97f252a0444c27 (diff) |
settings, uisettings: Initialize linkage counter
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 605fe7f86..c8651925e 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -144,7 +144,7 @@ float Volume() { return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault()); } -Linkage::Linkage() = default; +Linkage::Linkage(u32 initial_count) : count{initial_count} {} Linkage::~Linkage() = default; const char* TranslateCategory(Category category) { |