13
0

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:
Carl Hetherington 2011-07-12 13:33:35 +00:00
parent f908d45fa0
commit 11b0ac77f5

View File

@ -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 ();