mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 13:49:45 +00:00
Merge "Fix AudioControl@2.0 fade check" into rvc-dev am: 331370012d
Change-Id: Ied4a76be664eddaa890efecd0f9116834f6df7a2
This commit is contained in:
@@ -69,7 +69,7 @@ Return<void> AudioControl::setBalanceTowardRight(float value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Return<void> AudioControl::setFadeTowardFront(float value) {
|
Return<void> AudioControl::setFadeTowardFront(float value) {
|
||||||
if (!isValidValue(value)) {
|
if (isValidValue(value)) {
|
||||||
// Just log in this default mock implementation
|
// Just log in this default mock implementation
|
||||||
LOG(INFO) << "Fader set to " << value;
|
LOG(INFO) << "Fader set to " << value;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user