Skip to content

Commit

Permalink
- fixed #501
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Sep 16, 2024
1 parent b263ec8 commit c4ea1a4
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 @@
db42d96dc918b0ff55f60615f400861ec9ea2e7a
b263ec850283302435f60fdc012380069071ccfe
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 "db42d96dc918b0ff55f60615f400861ec9ea2e7a"
#define PREVIOUS_HISE_COMMIT "b263ec850283302435f60fdc012380069071ccfe"
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, (float)velocity * 127.0f));
state.injectMessage(MidiMessage::noteOn(channel, noteNumber, velocity));
}

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

0 comments on commit c4ea1a4

Please sign in to comment.