From 53e411c01185a6dd96dcf52b1caee55dc1a0f901 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 25 Mar 2021 10:22:41 -0600 Subject: [PATCH] fix logic error in conditional --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 8b1c9dd0c5..32f107843b 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3411,7 +3411,7 @@ TempoMap::set_state_3x (const XMLNode& node) } } - if (!have_initial_tempo || !have_initial_tempo) { + if (!have_initial_meter || !have_initial_tempo) { error << _("Old tempo map information is missing either tempo or meter information - ignored") << endmsg; return -1; }