Comment 10 for bug 529945

Revision history for this message
thread (thethread) wrote :

I just hacked my ratecontrol.cpp more like this, and now I have much better control when I beatmatch, when I seek locally, or spin back the outbound track (tune is stopped or playing). Actually, the beatmatching sensitivity (when playing) is lesser, and the seeking sensitivity (when stopped) is greater. And I like it this way.

Now that I have this sorted, I think I'm about to have a whole lot of fun with mixxx 1.8.0 beta 2 !

$ diff ratecontrol.cpp.orig ratecontrol.cpp
366c366
< else rate = oldScratchFactor + jogFactor + wheelFactor/10.; // Just remove oldScratchFactor in future
---
> else rate = oldScratchFactor + jogFactor * 18 + wheelFactor/10.; // Just remove oldScratchFactor in future
377c377
< rate += wheelFactor/10.;
---
> rate += wheelFactor * 10;