Skip to content

Commit

Permalink
Correct the setter for using decibels in the volume manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimian committed Jan 26, 2025
1 parent 359dcd4 commit 8c7a12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TotalMixVC/Communicator/VolumeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public bool UseDecibels
{
if (_useDecibels != value)
{
if (_useDecibels)
if (value)
{
_volumeRegularIncrement = 1.0f;
_volumeFineIncrement = 0.5f;
Expand Down

0 comments on commit 8c7a12b

Please sign in to comment.