Make the default volume 50% (compensate for logarithmic volume).

Closes #1052
This commit is contained in:
Deluan 2021-07-14 09:58:43 -04:00 committed by Joe Stump
parent 5c61038569
commit cbfa011273
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -16,7 +16,7 @@ const initialState = {
queue: [],
current: {},
clear: false,
volume: 0.5,
volume: Math.pow(0.5, 2), // 50%
savedPlayIndex: 0,
}