From 24c84bff591acf6e82b485fb7bca3a4c16844497 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 14 Jan 2021 17:46:53 -0700 Subject: [PATCH] nutempo #warning removal --- libs/ardour/automatable.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/ardour/automatable.cc b/libs/ardour/automatable.cc index ab1c9452cb..4bc646cc64 100644 --- a/libs/ardour/automatable.cc +++ b/libs/ardour/automatable.cc @@ -405,9 +405,8 @@ Automatable::non_realtime_locate (samplepos_t now) * compare to compare to non_realtime_transport_stop() */ const bool list_did_write = !l->in_new_write_pass (); -#warning NUTEMPO check use of domain in arbitrary irrelevant time - c->stop_touch (timepos_t::zero (Temporal::AudioTime)); // time is irrelevant - l->stop_touch (timepos_t::zero (Temporal::AudioTime)); + c->stop_touch (timepos_t::zero (time_domain())); // time is irrelevant + l->stop_touch (timepos_t::zero (time_domain())); c->commit_transaction (list_did_write); l->write_pass_finished (timepos_t (now), Config->get_automation_thinning_factor ());