Skip to content

Commit

Permalink
- fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Sep 16, 2024
1 parent c4ea1a4 commit 583f242
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion currentGitHash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b263ec850283302435f60fdc012380069071ccfe
c4ea1a4a7a400cfcbef175bf50f21c3ce2feb773
2 changes: 1 addition & 1 deletion hi_backend/backend/currentGit.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PREVIOUS_HISE_COMMIT "b263ec850283302435f60fdc012380069071ccfe"
#define PREVIOUS_HISE_COMMIT "c4ea1a4a7a400cfcbef175bf50f21c3ce2feb773"
2 changes: 1 addition & 1 deletion hi_scripting/scripting/api/ScriptingApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5344,7 +5344,7 @@ void ScriptingApi::Synth::playNoteFromUI(int channel, int noteNumber, int veloci
{
CustomKeyboardState& state = getScriptProcessor()->getMainController_()->getKeyboardState();

state.injectMessage(MidiMessage::noteOn(channel, noteNumber, velocity));
state.injectMessage(MidiMessage::noteOn(channel, noteNumber, (uint8)velocity));
}

void ScriptingApi::Synth::noteOffFromUI(int channel, int noteNumber)
Expand Down

0 comments on commit 583f242

Please sign in to comment.