Fix incomplete chorus reverb help strings (#845)

This commit is contained in:
jjceresa 2021-04-12 10:10:03 +02:00 committed by GitHub
parent aa966e4c31
commit 149e08f181
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 5 deletions

View File

@ -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)