diff --git a/firmware/drivers/audio/wm8758.c b/firmware/drivers/audio/wm8758.c index f7d7a5bc22..93ea7c2d6c 100644 --- a/firmware/drivers/audio/wm8758.c +++ b/firmware/drivers/audio/wm8758.c @@ -157,6 +157,10 @@ void audiohw_set_volume(int vol_l, int vol_r) void audiohw_set_lineout_volume(int vol_l, int vol_r) { int dac_l, amp_l, dac_r, amp_r; + + vol_l = vol_tenthdb2hw(vol_l); + vol_r = vol_tenthdb2hw(vol_r); + get_volume_params(vol_l, &dac_l, &_l); get_volume_params(vol_r, &dac_r, &_r);