fix oddly damaged code (vs. 5.x) for EngineSlave core methods (JACK transport)

This commit is contained in:
Paul Davis 2019-11-11 18:22:45 -07:00
parent c69227fd8d
commit 8a847dbf34

View file

@ -96,8 +96,10 @@ Engine_TransportMaster::speed_and_position (double& sp, samplepos_t& position, s
* called synchronously with the engine.
*/
if (backend && backend->speed_and_position (sp, position)) {
return true;
if (backend) {
_starting = backend->speed_and_position (sp, position);
} else {
_starting = false;
}
lp = now;
@ -105,7 +107,7 @@ Engine_TransportMaster::speed_and_position (double& sp, samplepos_t& position, s
_current_delta = 0;
return false;
return true;
}
std::string