src/sound

This commit is contained in:
Jasmine Iwanek
2022-03-13 10:03:39 -04:00
parent 0d9161016d
commit c195b348a7
22 changed files with 654 additions and 650 deletions

View File

@@ -540,17 +540,17 @@ static const device_config_t fluidsynth_config[] = {
};
const device_t fluidsynth_device = {
"FluidSynth",
"fluidsynth",
0,
0,
fluidsynth_init,
fluidsynth_close,
NULL,
{ fluidsynth_available },
NULL,
NULL,
fluidsynth_config
.name = "FluidSynth",
.internal_name = "fluidsynth",
.flags = 0,
.local = 0,
.init = fluidsynth_init,
.close = fluidsynth_close,
.reset = NULL,
{ .available = fluidsynth_available },
.speed_changed = NULL,
.force_redraw = NULL,
.config = fluidsynth_config
};
#endif /*USE_FLUIDSYNTH*/