We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4864b1 commit a267ce6Copy full SHA for a267ce6
1 file changed
gui/QT/option/audio_opts.cpp
@@ -35,7 +35,7 @@ std::vector<SettingItem> getAudioPlayback(AvailableSettings *availSettings){
35
36
for(const auto &i : availSettings->getDevices(AUDIO_PLAYBACK)){
37
SettingItem item;
38
- item.name = i.type + ": " + i.name;
+ item.name = std::format("{}: {}", i.type, i.name);
39
item.opts.push_back({optStr, i.type});
40
item.opts.push_back({optStr + "." + i.type + ".device", i.deviceOpt});
41
auto embedAudioIt = i.extra.find("isEmbeddedAudio");
0 commit comments