Skip to content

Commit

Permalink
- fix midi node not applying transpose amount of HiseEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hart committed Nov 27, 2024
1 parent a037cfb commit 50ed899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hi_dsp_library/dsp_basics/logic_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ template <int Unused> struct notenumber
{
if (e.isNoteOn())
{
v = (double)e.getNoteNumber() / 127.0;
v = (double)e.getNoteNumberIncludingTransposeAmount() / 127.0;
return true;
}

Expand Down

0 comments on commit 50ed899

Please sign in to comment.