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.
This commit is contained in:
Jim Ramsay
2020-07-29 23:01:08 -04:00
committed by Robin Gareus
parent 547465e1fa
commit 79a365edce

View File

@@ -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));