From 79a365edced18a48d474da5bdcbb88e0e3212416 Mon Sep 17 00:00:00 2001 From: Jim Ramsay Date: Wed, 29 Jul 2020 23:01:08 -0400 Subject: [PATCH] Allow latency measurements even if inverted wiring is detected Inverted wiring is important to call out when detected, but the measured latency is still valid and should be applicable. --- gtk2_ardour/engine_dialog.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc index aca6f34f9b..32b5c8955f 100644 --- a/gtk2_ardour/engine_dialog.cc +++ b/gtk2_ardour/engine_dialog.cc @@ -3056,9 +3056,11 @@ EngineControl::check_audio_latency_measurement () } if (mtdm->inv ()) { + /* only warn user, in some cases the measured value is correct, + * regardless of the warning - https://github.com/Ardour/ardour/pull/656 + */ strcat (buf, " "); strcat (buf, _("(inverted - bad wiring)")); - solid = false; } lm_results.set_markup (string_compose (results_markup, buf));