Skip to content

Commit

Permalink
Make buildin synth volume less dank
Browse files Browse the repository at this point in the history
Gain 1.0 is way to high and causes distortion in loud tracks
  • Loading branch information
PolyMeilex committed Dec 30, 2023
1 parent 58d8e4b commit 1282142
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions neothesia/src/output_manager/synth_backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ fn oxisynth_adapter(

let mut synth = oxisynth::Synth::new(oxisynth::SynthDescriptor {
sample_rate,
gain: 1.0,
..Default::default()
})
.unwrap();
Expand Down Expand Up @@ -218,7 +217,6 @@ fn fluidsynth_adapter(

let synth = fluidlite::Synth::new(settings).unwrap();
synth.sfload(path, true).unwrap();
synth.set_gain(1.0);

synth
};
Expand Down

0 comments on commit 1282142

Please sign in to comment.