You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The gain has an argument that is a float fraction. So try something like this:
void volume_up()
{
gain++;
if (gain >=100) gain = 100;
out->SetGain(gain/100.0);
}
Hello, Anton!
Thanks for good project.
I want to add volume regulation, but it isn't work.
In
loop
section I'm write:Where I'm wrong?
The text was updated successfully, but these errors were encountered: