Fix linear -> db conversion off-by-1

This commit is contained in:
Matthew Stratford 2020-05-10 23:10:13 +01:00
parent 297f0906c2
commit c04e786647

View file

@ -517,7 +517,8 @@ export const setVolume = (
uiLevel = 0.5;
break;
case "full":
volume = uiLevel = 1;
volume = 0;
uiLevel = 1;
break;
}