Fixed bug that caused problems on manual adjustment of bpm
This commit is contained in:
@ -285,7 +285,7 @@ void calculateCycles() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void calculateBPMTiming() {
|
void calculateBPMTiming() {
|
||||||
int mod;
|
int mod = 0;
|
||||||
if (masterClockMode == 0) {
|
if (masterClockMode == 0) {
|
||||||
if (bpmModulationRange != 0 && !bpmModulationChannel) {
|
if (bpmModulationRange != 0 && !bpmModulationChannel) {
|
||||||
mod = map (a1Input, 0, 1023, 0, bpmModulationRange*10);
|
mod = map (a1Input, 0, 1023, 0, bpmModulationRange*10);
|
||||||
|
|||||||
Reference in New Issue
Block a user