continue with code simplification and add comment given 4a40ff9e53

This commit is contained in:
Paul Davis 2020-03-05 08:38:31 -07:00
parent abcb092adc
commit f04974aa6c

View File

@ -97,14 +97,9 @@ Session::realtime_stop (bool abort, bool clear_state)
ENSURE_PROCESS_THREAD;
DEBUG_TRACE (DEBUG::Transport, string_compose ("realtime stop @ %1 speed = %2\n", _transport_sample, _transport_speed));
PostTransportWork todo = PostTransportWork (0);
if (_transport_speed < 0.0f) {
todo = (PostTransportWork (todo | PostTransportStop));
} else {
todo = PostTransportWork (todo | PostTransportStop);
}
PostTransportWork todo = PostTransportStop;
/* this resets the speed we will start at if just requested to roll again */
_default_transport_speed = 1.0;
/* call routes */