Fix remaning uppercase enum value.

This commit is contained in:
Dennis Frett 2022-09-06 20:01:15 +02:00
parent a21295dd07
commit fbed4d4994

View file

@ -217,5 +217,5 @@ private:
// -dB value. Example: 19 represents -9.5dB.
uint8_t volume = 0;
bool muted = false;
InputSource inputSource = InputSource::UNKNOWN;
InputSource inputSource = InputSource::Unknown;
};