mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
just bail out (to prevent further harm) if no panners are found.
This commit is contained in:
parent
e6b56f3447
commit
4ddd025139
1 changed files with 2 additions and 2 deletions
|
|
@ -119,8 +119,8 @@ PannerShell::configure_io (ChanCount in, ChanCount out)
|
||||||
|
|
||||||
PannerInfo* pi = PannerManager::instance().select_panner (in, out, _user_selected_panner_uri);
|
PannerInfo* pi = PannerManager::instance().select_panner (in, out, _user_selected_panner_uri);
|
||||||
if (!pi) {
|
if (!pi) {
|
||||||
cerr << "No panner found: check that panners are being discovered correctly during startup.\n";
|
fatal << _("No panner found: check that panners are being discovered correctly during startup.") << endmsg;
|
||||||
assert (pi);
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG_TRACE (DEBUG::Panning, string_compose (_("select panner: %1\n"), pi->descriptor.name.c_str()));
|
DEBUG_TRACE (DEBUG::Panning, string_compose (_("select panner: %1\n"), pi->descriptor.name.c_str()));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue