summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalker Thompson <walker.thompson@urz.uni-heidelberg.de>2026-07-03 23:38:32 +0200
committerWalker Thompson <walker.thompson@urz.uni-heidelberg.de>2026-07-03 23:38:32 +0200
commit1b20b6c614de29b771c00f35ff4a3fec8fe00909 (patch)
tree5c4b35ea790d3eb8da209e1870cc07cc69d43e6f
parentc8e86e251c8ce436632136930b2a51fe47db0552 (diff)
X11/Motif: fix regression introduced when updating repo
-rw-r--r--voss_devctl_xm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/voss_devctl_xm.c b/voss_devctl_xm.c
index 1739b19..db86df6 100644
--- a/voss_devctl_xm.c
+++ b/voss_devctl_xm.c
@@ -155,7 +155,7 @@ void oss_enum_devs(int fd, int oss_numaudios)
if (ai.caps & (PCM_CAP_OUTPUT | PCM_CAP_VIRTUAL)) {
oss_devlist_add(&devs_play, &ai);
}
- if (ai.caps & PCM_CAP_INPUT) {
+ if (ai.caps & (PCM_CAP_INPUT | PCM_CAP_VIRTUAL)) {
oss_devlist_add(&devs_rec, &ai);
}
}