mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
fix oddly damaged code (vs. 5.x) for EngineSlave core methods (JACK transport)
This commit is contained in:
parent
c69227fd8d
commit
8a847dbf34
1 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue