Skip to content

Commit

Permalink
Make the default volume 50% (compensate for logarithmic volume).
Browse files Browse the repository at this point in the history
Closes #1052
  • Loading branch information
deluan committed Jul 14, 2021
1 parent 8e71f30 commit 4a25fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/reducers/playerReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const initialState = {
queue: [],
current: {},
clear: false,
volume: 0.5,
volume: Math.pow(0.5, 2), // 50%
savedPlayIndex: 0,
}

Expand Down

0 comments on commit 4a25fa0

Please sign in to comment.