We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf3a7c commit 24f3238Copy full SHA for 24f3238
crates/firewheel-cpal/src/lib.rs
@@ -252,9 +252,9 @@ impl AudioBackend for CpalBackend {
252
}
253
});
254
255
- match host.input_devices() {
256
- Ok(input_devices) => {
257
- for device in input_devices {
+ match host.output_devices() {
+ Ok(output_devices) => {
+ for device in output_devices {
258
let Ok(id) = device.id() else {
259
continue;
260
};
0 commit comments