mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
Print a message to the console if we abort because no panner
is found. git-svn-id: svn://localhost/ardour2/branches/3.0@9847 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f908d45fa0
commit
11b0ac77f5
1 changed files with 4 additions and 1 deletions
|
|
@ -99,7 +99,10 @@ PannerShell::configure_io (ChanCount in, ChanCount out)
|
|||
}
|
||||
|
||||
PannerInfo* pi = PannerManager::instance().select_panner (in, out);
|
||||
assert (pi);
|
||||
if (!pi) {
|
||||
cerr << "No panner found: check that panners are being discovered correctly during startup.\n";
|
||||
assert (pi);
|
||||
}
|
||||
|
||||
boost::shared_ptr<Speakers> speakers = _session.get_speakers ();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue