From 07aa203a92e5911661b380ef486cfb0c1f477a28 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 8 May 2020 01:37:24 +0200 Subject: [PATCH] Fix comment in previous commit --- libs/ardour/track.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 3036fe52c4..1837848e69 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -762,10 +762,11 @@ Track::set_align_choice_from_io () while (0 != (p = _input->nth (n++))) { /* In case of JACK all ports not owned by Ardour may be re-sampled, - * and latency is added. external JACK ports need to be treated + * and latency is added. External JACK ports need to be treated * like physical ports: I/O latency needs to be taken into account. * - * When not using JACK, all external ports are physical ports. + * When not using JACK, all external ports are physical ports + * so this is a NO-OP for other backends. */ if (p->externally_connected ()) { have_physical = true;