mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Quick and dirty fix for ffado jack options in engine dialog
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2910 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
5190d2ac4f
commit
6d366be98a
1 changed files with 10 additions and 1 deletions
|
|
@ -428,7 +428,7 @@ EngineControl::build_command_line (vector<string>& cmd)
|
|||
cmd.push_back ("netjack");
|
||||
} else if (driver == X_("FFADO")) {
|
||||
using_ffado = true;
|
||||
cmd.push_back ("ffado");
|
||||
cmd.push_back ("firewire");
|
||||
} else if ( driver == X_("Dummy")) {
|
||||
using_dummy = true;
|
||||
cmd.push_back ("dummy");
|
||||
|
|
@ -757,6 +757,15 @@ vector<string>
|
|||
EngineControl::enumerate_ffado_devices ()
|
||||
{
|
||||
vector<string> devs;
|
||||
backend_devs.clear ();
|
||||
|
||||
devs.push_back("hw:0");
|
||||
devs.push_back("hw:1");
|
||||
devs.push_back("wh:2");
|
||||
|
||||
backend_devs.push_back("hw:0");
|
||||
backend_devs.push_back("hw:1");
|
||||
backend_devs.push_back("wh:2");
|
||||
return devs;
|
||||
}
|
||||
vector<string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue