mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Fix the shuttle slider (TM)
This commit is contained in:
parent
e152b80abd
commit
fad1d07747
1 changed files with 1 additions and 1 deletions
|
|
@ -600,7 +600,7 @@ ShuttleControl::use_shuttle_fract (bool force, bool zero_ok)
|
|||
more than once per process cycle.
|
||||
*/
|
||||
|
||||
if (!force && (last_shuttle_request - now) < (PBD::microseconds_t) AudioEngine::instance()->usecs_per_cycle()) {
|
||||
if (!force && (now - last_shuttle_request) < (PBD::microseconds_t) AudioEngine::instance()->usecs_per_cycle()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue