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
parent 8e71f308c2
commit 4a25fa0920
1 changed files with 1 additions and 1 deletions

View File

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