13
0

increase available explicit range of "number of processors to use" to include the full count (even though this is also accessible as "all")

git-svn-id: svn://localhost/ardour2/branches/3.0@8721 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-02-05 16:40:33 +00:00
parent 11b22d503d
commit affc5b0c0d

View File

@ -782,8 +782,8 @@ RCOptionEditor::RCOptionEditor ()
procs->add (-1, _("all but one processor"));
procs->add (0, _("all available processors"));
for (uint32_t i = 2; i < hwcpus; ++i) {
procs->add (1, string_compose (_("%1 processors"), i));
for (uint32_t i = 1; i <= hwcpus; ++i) {
procs->add (i, string_compose (_("%1 processors"), i));
}
add_option (_("Misc"), procs);