mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
triggerbox: output information rather than abort
This commit is contained in:
parent
6bef80ae60
commit
5567f30213
1 changed files with 3 additions and 1 deletions
|
|
@ -3813,7 +3813,9 @@ TriggerBox::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
||||||
|
|
||||||
if (!_locate_armed) {
|
if (!_locate_armed) {
|
||||||
if (!_session.transport_state_rolling() && !allstop) {
|
if (!_session.transport_state_rolling() && !allstop) {
|
||||||
assert (_currently_playing->state() == Trigger::WaitingToStart);
|
if (_currently_playing->state() != Trigger::WaitingToStart) {
|
||||||
|
std::cerr <<"transport not rolling and trigger in state " << enum_2_string (_currently_playing->state()) << std::endl;
|
||||||
|
}
|
||||||
maybe_request_roll (_session);
|
maybe_request_roll (_session);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue