mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Fix total number of process threads
This commit is contained in:
parent
96a9437289
commit
542d021fbc
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ Graph::reset_thread_list ()
|
|||
throw failed_constructor ();
|
||||
}
|
||||
|
||||
for (uint32_t i = 1; i < num_threads; ++i) {
|
||||
for (uint32_t i = 2; i < num_threads; ++i) {
|
||||
if (AudioEngine::instance()->create_process_thread (boost::bind (&Graph::helper_thread, this))) {
|
||||
throw failed_constructor ();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue