From 4016f5b139b5c4991f91258aae2602c194fddafa Mon Sep 17 00:00:00 2001 From: Owen Williams Date: Tue, 27 Jul 2021 18:51:18 -0400 Subject: [PATCH] SyncLock: Fix issue with single-playing syncables. https://mixxx.discourse.group/t/vestax-tr-1-weird-behaviour-quantizing-drops-tempo/22715/7 Do not seek phase when audible status changes --- src/engine/sync/enginesync.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine/sync/enginesync.cpp b/src/engine/sync/enginesync.cpp index 5d9045f6655..8988b043ca5 100644 --- a/src/engine/sync/enginesync.cpp +++ b/src/engine/sync/enginesync.cpp @@ -254,8 +254,6 @@ void EngineSync::notifyPlayingAudible(Syncable* pSyncable, bool playingAudible) activateMaster(newMaster, false); setMasterParams(newMaster, newMaster->getBeatDistance(), newMaster->getBaseBpm(), newMaster->getBpm()); } - - pSyncable->requestSync(); } void EngineSync::notifyScratching(Syncable* pSyncable, bool scratching) {