mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-18 13:41:05 +00:00
Fix missing initializer warnings on gcc 9.3
This commit is contained in:
parent
ebbaff32bf
commit
614fcab9cc
1 changed files with 4 additions and 1 deletions
|
@ -1241,7 +1241,10 @@ fluid_handle_reverb_command(void *data, int ac, char **av, fluid_ostream_t out,
|
|||
/* name and min/max values table */
|
||||
static struct value values[FLUID_REVERB_PARAM_LAST] =
|
||||
{
|
||||
{"room size"}, {"damp"}, {"width"}, {"level"}
|
||||
{"room size", 0, 0},
|
||||
{"damp", 0, 0},
|
||||
{"width", 0, 0},
|
||||
{"level", 0, 0}
|
||||
};
|
||||
|
||||
FLUID_ENTRY_COMMAND(data);
|
||||
|
|
Loading…
Reference in a new issue