fix copy error

This commit is contained in:
SamGondelman 2018-04-23 12:05:30 -07:00
parent 7842ee8eac
commit 1deb38f06d

View file

@ -147,7 +147,7 @@ void Audio::setInputVolume(float volume) {
} }
float Audio::getInputLevel() const { float Audio::getInputLevel() const {
return resultWithReadLock<bool>([&] { return resultWithReadLock<float>([&] {
return _inputLevel; return _inputLevel;
}); });
} }