incoming MIDI: use Session::request_stop() rather than Session::request_transport_speed()

This commit is contained in:
Paul Davis 2021-04-15 23:10:57 -06:00
parent 6b7be1083b
commit e5790c6b70

View File

@ -625,7 +625,7 @@ Session::mmc_step_timeout ()
if (diff_usecs > 1000000.0 || fabs (_transport_speed) < 0.0000001) {
/* too long or too slow, stop transport */
request_transport_speed (0.0);
request_stop ();
step_queued = false;
return false;
}