mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-01-03 15:05:31 +00:00
sio_list_devices example: fix cli argument typo
This commit is contained in:
parent
ce42b89da3
commit
aef8d1646d
|
@ -129,7 +129,7 @@ int main(int argc, char **argv) {
|
||||||
if (i >= argc) {
|
if (i >= argc) {
|
||||||
return usage(exe);
|
return usage(exe);
|
||||||
} else if (strcmp(arg, "--backend") == 0) {
|
} else if (strcmp(arg, "--backend") == 0) {
|
||||||
if (strcmp("-dummy", argv[i]) == 0) {
|
if (strcmp("dummy", argv[i]) == 0) {
|
||||||
backend = SoundIoBackendDummy;
|
backend = SoundIoBackendDummy;
|
||||||
} else if (strcmp("alsa", argv[i]) == 0) {
|
} else if (strcmp("alsa", argv[i]) == 0) {
|
||||||
backend = SoundIoBackendAlsa;
|
backend = SoundIoBackendAlsa;
|
||||||
|
|
Loading…
Reference in a new issue