mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
Don't ever pass -d for device name to dummy jackd driver
This commit is contained in:
parent
903d728b9c
commit
70f0cfdb3b
1 changed files with 5 additions and 3 deletions
|
|
@ -850,9 +850,11 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
|
|||
}
|
||||
}
|
||||
|
||||
if (options.input_device == options.output_device && options.input_device != default_device_name) {
|
||||
args.push_back ("-d");
|
||||
args.push_back (command_line_input_device_name);
|
||||
if (options.driver != dummy_driver_name) {
|
||||
if (options.input_device == options.output_device && options.input_device != default_device_name) {
|
||||
args.push_back ("-d");
|
||||
args.push_back (command_line_input_device_name);
|
||||
}
|
||||
}
|
||||
|
||||
if (options.driver == alsa_driver_name) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue