From 542d021fbc3c7846cc659d3522e33067af0468b1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 13 Jul 2017 17:16:31 +0200 Subject: Fix total number of process threads --- libs/ardour/graph.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/graph.cc') diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc index 7b3719605f..aee5ef77fd 100644 --- a/libs/ardour/graph.cc +++ b/libs/ardour/graph.cc @@ -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 (); } -- cgit v1.2.3