Port back to "output" and "device" settings in lowercase

Was accidentally changed to capitalized.
This commit is contained in:
Jonas Kvinge
2025-02-01 00:48:57 +01:00
parent b9b4e9f831
commit 8349a8b0ee
3 changed files with 46 additions and 7 deletions

View File

@@ -26,9 +26,12 @@ namespace BackendSettings {
constexpr char kSettingsGroup[] = "Backend";
constexpr char kEngine[] = "Engine";
constexpr char kOutput[] = "Output";
constexpr char kDevice[] = "Device";
constexpr char kEngine[] = "engine";
constexpr char kEngineU[] = "Engine";
constexpr char kOutput[] = "output";
constexpr char kOutputU[] = "Output";
constexpr char kDevice[] = "device";
constexpr char kDeviceU[] = "Device";
constexpr char kALSAPlugin[] = "alsaplugin";
constexpr char kExclusiveMode[] = "exclusive_mode";
constexpr char kVolumeControl[] = "volume_control";