13
0

Don't ever pass -d for device name to dummy jackd driver

This commit is contained in:
Colin Fletcher 2013-10-23 17:46:51 +01:00
parent 903d728b9c
commit 70f0cfdb3b

View File

@ -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) {