Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33137001 authored by Hayden Gomes's avatar Hayden Gomes Committed by Android (Google) Code Review
Browse files

Merge "Fix AudioControl@2.0 fade check" into rvc-dev

parents 253be8a6 908a0a2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ Return<void> AudioControl::setBalanceTowardRight(float value) {
}

Return<void> AudioControl::setFadeTowardFront(float value) {
    if (!isValidValue(value)) {
    if (isValidValue(value)) {
        // Just log in this default mock implementation
        LOG(INFO) << "Fader set to " << value;
    } else {