Merge pull request #11002 from ctrlaltdavid/21461

Fix noise reduction checkbox not always working
This commit is contained in:
Ken Cooke 2017-07-19 19:22:28 -07:00 committed by GitHub
commit 87d9dfd243

View file

@ -81,7 +81,7 @@ private:
float _inputVolume { 1.0f };
float _inputLevel { 0.0f };
bool _isMuted { false };
bool _enableNoiseReduction;
bool _enableNoiseReduction { true }; // Match default value of AudioClient::_isNoiseGateEnabled.
bool _contextIsHMD { false };
AudioDevices* getDevices() { return &_devices; }