Skip to content

Commit

Permalink
Set synth.device-id to 16 by default (#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst authored Oct 13, 2024
1 parent 4283b1d commit e27738b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/recent_changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/*!

\page RecentChanges Recent Changes
\section NewIn2_4_0 What's new in 2.4.0?
- synth.device-id now has a default value of 16
- synth.gain now has a default value of 0.6
- Default values of reverb and chorus settings have been tuned

\section NewIn2_3_2 What's new in 2.3.2?

- fluid_player_get_division() has been added
Expand Down
2 changes: 1 addition & 1 deletion src/synth/fluid_synth.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void fluid_synth_settings(fluid_settings_t *settings)
fluid_settings_register_int(settings, "synth.effects-channels", 2, 2, 2, 0);
fluid_settings_register_int(settings, "synth.effects-groups", 1, 1, 128, 0);
fluid_settings_register_num(settings, "synth.sample-rate", 44100.0, 8000.0, 96000.0, 0);
fluid_settings_register_int(settings, "synth.device-id", 0, 0, 127, 0);
fluid_settings_register_int(settings, "synth.device-id", 16, 0, 127, 0);
#ifdef ENABLE_MIXER_THREADS
fluid_settings_register_int(settings, "synth.cpu-cores", 1, 1, 256, 0);
#else
Expand Down

0 comments on commit e27738b

Please sign in to comment.