Skip to content

Commit

Permalink
fix neg 5 input
Browse files Browse the repository at this point in the history
  • Loading branch information
felixh committed Jun 13, 2024
1 parent 73b2f29 commit 850181d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/additive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct Additive : Module {
}
value = inputs[NEG5_INPUT].getVoltage();
if (negfivest and value > 0.f) {
pitch = pitch - 1.f/12;
pitch = pitch - 5.f/12;
notecount -= 5;
negfivest = false;
}
Expand Down

0 comments on commit 850181d

Please sign in to comment.