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

Commit 88011857 authored by Hayden Gomes's avatar Hayden Gomes Committed by Automerger Merge Worker
Browse files

Merge "Fix AudioControl@2.0 fade check" into rvc-dev am: 33137001 am:...

Merge "Fix AudioControl@2.0 fade check" into rvc-dev am: 33137001 am: 5fbf64e3 am: 4066a488 am: 67bf4dec

Change-Id: Iecfc4bd2a21ac46e67d602efd838f5e7ac347f50
parents 3f310dbe 67bf4dec
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 {