diff options
| author | 2023-06-09 16:53:01 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:07 -0400 | |
| commit | 4c4bc134a90a248435786b1dff4f514d1c9c4464 (patch) | |
| tree | 2774f70b40cc543179ebfbb978a679196a745a87 /src/common/settings.cpp | |
| parent | configure_system: Implement with for loop (diff) | |
| download | yuzu-4c4bc134a90a248435786b1dff4f514d1c9c4464.tar.gz yuzu-4c4bc134a90a248435786b1dff4f514d1c9c4464.tar.xz yuzu-4c4bc134a90a248435786b1dff4f514d1c9c4464.zip | |
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() { | |||
| 144 | return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault()); | 144 | return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault()); |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | Linkage::Linkage() = default; | 147 | Linkage::Linkage(u32 initial_count) : count{initial_count} {} |
| 148 | Linkage::~Linkage() = default; | 148 | Linkage::~Linkage() = default; |
| 149 | 149 | ||
| 150 | const char* TranslateCategory(Category category) { | 150 | const char* TranslateCategory(Category category) { |