Skip to content

Commit

Permalink
Update plaits~.cpp
Browse files Browse the repository at this point in the history
fix midi in
  • Loading branch information
porres committed Apr 19, 2024
1 parent c14564f commit fa9cd5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code_source/Compiled/audio/plaits~/plaits~.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ void plaits_list(t_plaits *x, t_symbol *s, int ac, t_atom *av){
else{
t_atom at[3];
SETFLOAT(at, atom_getfloat(av));
SETFLOAT(at+1, atom_getfloat(av+1));
SETFLOAT(at+2, atom_getfloat(av+1));
SETFLOAT(at+1, atom_getfloat(av+1) / 127.);
SETFLOAT(at+2, atom_getfloat(av+1) / 127.);
obj_list(&x->x_obj, NULL, 3, at);
}
x->x_midi_tr = x->x_midi_lvl = 0;
Expand Down

0 comments on commit fa9cd5e

Please sign in to comment.