Skip to content

Commit

Permalink
Fixed inversion of interpolation parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
peterall committed Jul 28, 2020
1 parent 18df5af commit e616b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TOPTARGETS := all clean

OSCILLATORS := $(wildcard *mk)

VERSION=1.6-0
VERSION=1.6-1

$(TOPTARGETS): $(OSCILLATORS) package_prologue package_minilogue-xd package_nutekt-digital
$(OSCILLATORS):
Expand Down
2 changes: 1 addition & 1 deletion macro-oscillator2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void update_parameters() {
plaits::WavetableEngine engine;
float out_gain = 0.6f, aux_gain = 0.6f;
void update_parameters() {
parameters.harmonics = p_values[k_user_osc_param_id1] == 0 ? 1.f : 0.f;
parameters.harmonics = p_values[k_user_osc_param_id1] == 0 ? 0.f : 1.f;
parameters.timbre = get_shape();
parameters.morph = get_shift_shape();
mix = get_param_id2();
Expand Down

0 comments on commit e616b11

Please sign in to comment.