13
0

use -r argument with JACK if realtime is not requested in engine dialog (also applied to 2.X)

git-svn-id: svn://localhost/ardour2/branches/3.0@7476 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-07-23 01:04:47 +00:00
parent c11c01ef20
commit fde289fe36

View File

@ -398,6 +398,8 @@ EngineControl::build_command_line (vector<string>& cmd)
cmd.push_back ("-R"); cmd.push_back ("-R");
cmd.push_back ("-P"); cmd.push_back ("-P");
cmd.push_back (to_string ((uint32_t) floor (priority_spinner.get_value()), std::dec)); cmd.push_back (to_string ((uint32_t) floor (priority_spinner.get_value()), std::dec));
} else {
cmd.push_back ("-r"); /* override jackd's default --realtime */
} }
if (unlock_memory_button.get_active()) { if (unlock_memory_button.get_active()) {