remove messages when tempo map is not available in RT context

git-svn-id: svn://localhost/ardour2/branches/3.0@11175 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-01-06 20:29:18 +00:00
parent 16063123f3
commit bfca00efd2
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ Session::process (pframes_t nframes)
timecode_time(transport_frames, transport_timecode);
tick (transport_frames, transport_bbt, transport_timecode); /* EMIT SIGNAL */
} catch (...) {
warning << _("Missed MIDI Clock tick due to problems with tempo map") << endmsg;
/* don't bother with a message */
}
SendFeedback (); /* EMIT SIGNAL */

View file

@ -502,7 +502,7 @@ Session::jack_timebase_callback (jack_transport_state_t /*state*/,
pos->valid = jack_position_bits_t (pos->valid | JackPositionBBT);
} catch (...) {
warning << _("failed to set tempo map information for JACK due to issues with tempo map") << endmsg;
/* no message */
}
}