SoapyAudio icon indicating copy to clipboard operation
SoapyAudio copied to clipboard

getGain() returns always zero, regardless the value previously set with setGain()

Open gmbertani opened this issue 3 years ago • 0 comments

Hello,

in Settings.cpp, line 239:

if ((name.length() >= 2) && (name.substr(0, 2) == "AUDIO"))

always failed. I had to patch it in this way to make it work:

if ((name.length() >= 2) && (name.substr(0, 2) == "AU")) Cordially Giuseppe

gmbertani avatar Aug 20 '21 13:08 gmbertani