Fixed basic astraction selection for simple mixer API

This commit is contained in:
Jaroslav Kysela 2005-03-29 14:06:29 +00:00
parent 1299087e6c
commit a35432c43e

View file

@ -1528,7 +1528,7 @@ int main(int argc, char *argv[])
if (!strcmp(optarg, "none")) if (!strcmp(optarg, "none"))
smixer_options.abstract = SND_MIXER_SABSTRACT_NONE; smixer_options.abstract = SND_MIXER_SABSTRACT_NONE;
else if (!strcmp(optarg, "basic")) else if (!strcmp(optarg, "basic"))
smixer_options.abstract = SND_MIXER_SABSTRACT_NONE; smixer_options.abstract = SND_MIXER_SABSTRACT_BASIC;
else { else {
fprintf(stderr, "Select correct abstraction level (none or basic)...\n"); fprintf(stderr, "Select correct abstraction level (none or basic)...\n");
morehelp++; morehelp++;