mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
add audio hdmi output
This commit is contained in:
parent
6534f71238
commit
56180af727
2 changed files with 2 additions and 2 deletions
|
@ -351,7 +351,7 @@ static void *alsa_device_list_new(void *data)
|
|||
/* description of device IOID - input / output identifcation
|
||||
* ("Input" or "Output"), NULL means both) */
|
||||
|
||||
if (io == NULL)
|
||||
if (!io || !strcmp(io,"Output"))
|
||||
string_list_append(s, name, attr);
|
||||
|
||||
if (name)
|
||||
|
|
|
@ -369,7 +369,7 @@ static void *alsa_device_list_new(void *data)
|
|||
/* description of device IOID - input / output identifcation
|
||||
* ("Input" or "Output"), NULL means both) */
|
||||
|
||||
if (io == NULL)
|
||||
if (!io || !strcmp(io,"Output"))
|
||||
string_list_append(s, name, attr);
|
||||
|
||||
if (name)
|
||||
|
|
Loading…
Add table
Reference in a new issue