Browse Source

Increase minimum volume level from -100dB to -60dB

pull/7065/head
Tully 2 years ago
parent
commit
f6d15d2a8f
  1. 4
      Source/utils/soundsample.cpp

4
Source/utils/soundsample.cpp

@ -36,9 +36,9 @@ constexpr float VolumeScale = 3321.9281F;
/**
* Min and max volume range, in millibel.
* -100 dB (muted) to 0 dB (max. loudness).
* -60 dB (muted) to 0 dB (max. loudness).
*/
constexpr float MillibelMin = -10000.F;
constexpr float MillibelMin = -6000.F;
constexpr float MillibelMax = 0.F;
/**

Loading…
Cancel
Save