mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
Fix incomplete chorus reverb help strings (#845)
This commit is contained in:
parent
aa966e4c31
commit
149e08f181
1 changed files with 11 additions and 5 deletions
|
@ -214,7 +214,7 @@ static const fluid_cmd_t fluid_commands[] =
|
|||
},
|
||||
{
|
||||
"reverb", "reverb", fluid_handle_reverb,
|
||||
"reverb [0|1|on|off] Turn all reverb groups on or off"
|
||||
"reverb [group] 0|1|on|off Turn all or one reverb group on or off"
|
||||
},
|
||||
/* chorus commands */
|
||||
{
|
||||
|
@ -235,7 +235,7 @@ static const fluid_cmd_t fluid_commands[] =
|
|||
},
|
||||
{
|
||||
"chorus", "chorus", fluid_handle_chorus,
|
||||
"chorus [0|1|on|off] Turn all chorus groups on or off"
|
||||
"chorus [group] 0|1|on|off Turn all or one chorus group on or off"
|
||||
},
|
||||
{
|
||||
"gain", "general", fluid_handle_gain,
|
||||
|
@ -1338,7 +1338,7 @@ enum rev_chor_on_cde
|
|||
};
|
||||
|
||||
/* Purpose:
|
||||
* Set all reverb/chorus units on or off
|
||||
* Set one or all reverb/chorus units on or off
|
||||
*/
|
||||
static int
|
||||
fluid_handle_reverb_chorus_on_command(void *data, int ac, char **av, fluid_ostream_t out,
|
||||
|
@ -1386,7 +1386,10 @@ fluid_handle_reverb_chorus_on_command(void *data, int ac, char **av, fluid_ostre
|
|||
}
|
||||
|
||||
/* Purpose:
|
||||
* Set all reverb units on
|
||||
* Response to: reverb [fx group] on command.
|
||||
* Examples:
|
||||
* reverb off ,disable all reverb groups.
|
||||
* reverb 1 on ,enable reverb group at index 1.
|
||||
*/
|
||||
int
|
||||
fluid_handle_reverb(void *data, int ac, char **av, fluid_ostream_t out)
|
||||
|
@ -1516,7 +1519,10 @@ fluid_handle_chorusdepth(void *data, int ac, char **av, fluid_ostream_t out)
|
|||
}
|
||||
|
||||
/* Purpose:
|
||||
* Set all chorus units on
|
||||
* Response to: chorus [fx group] on command.
|
||||
* Examples:
|
||||
* chorus off ,disable all chorus groups.
|
||||
* chorus 1 on ,enable chorus group at index 1.
|
||||
*/
|
||||
int
|
||||
fluid_handle_chorus(void *data, int ac, char **av, fluid_ostream_t out)
|
||||
|
|
Loading…
Reference in a new issue