mirror of
https://github.com/clangen/musikcube.git
synced 2025-01-30 15:32:37 +00:00
Ensure the default preamp gain is 0.0, not 1.0.
This commit is contained in:
parent
8d27927860
commit
a698bf90a8
@ -172,7 +172,7 @@ static class Environment : public IEnvironment {
|
|||||||
virtual float GetPreampGain() override {
|
virtual float GetPreampGain() override {
|
||||||
if (::playbackPrefs) {
|
if (::playbackPrefs) {
|
||||||
return (float) ::playbackPrefs->GetDouble(
|
return (float) ::playbackPrefs->GetDouble(
|
||||||
prefs::keys::PreampDecibels.c_str(), 1.0f);
|
prefs::keys::PreampDecibels.c_str(), 0.0f);
|
||||||
}
|
}
|
||||||
return 1.0f;
|
return 1.0f;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user