diff --git a/src/virtmic.cpp b/src/virtmic.cpp index 1730136..6ca0340 100644 --- a/src/virtmic.cpp +++ b/src/virtmic.cpp @@ -70,12 +70,12 @@ void start(QString _target) { << "Link : " << target << ":" << port_id << " -> "; if (port.info().props["audio.channel"] == "FL") { - links.emplace(port_id, core.create_simple( - virt_fl->info().id, port_id)); + links.emplace(port_id, core.create( + {virt_fl->info().id, port_id})); std::cout << "[virtmic] " << virt_fl->info().id << std::endl; } else { - links.emplace(port_id, core.create_simple( - virt_fr->info().id, port_id)); + links.emplace(port_id, core.create( + {virt_fr->info().id, port_id})); std::cout << "[virtmic] " << virt_fr->info().id << std::endl; } }