Skip to content

Commit b9e9059

Browse files
committed
Volume remove div by 100
1 parent 74df451 commit b9e9059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/SnapOutput.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class SnapOutput : public AudioInfoSupport {
6565

6666
/// Adjust the volume
6767
void setVolume(float vol) {
68-
this->vol = vol / 100.0;
68+
this->vol = vol;
6969
ESP_LOGI(TAG, "Volume: %f", this->vol);
7070
vol_stream.setVolume(this->vol * vol_factor);
7171
}

0 commit comments

Comments
 (0)