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

Commit 3c048c0b 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: 5fbf64e3

Change-Id: Iffb75ff73fada413600250241948dc99c9d3d8b5
parents 89acead9 5fbf64e3
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 {