Skip to content

Commit

Permalink
Change keyboard playing velocity from 127 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
carrotflakes committed Feb 3, 2024
1 parent 05202ec commit eda28e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benihora-vst-web/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ fn handle_input(ctx: &egui::Context, events: &mut VecDeque<synth::Event>) {
{
events.push_back(synth::Event::NoteOn {
note: n,
velocity: 1.0,
velocity: 100.0 / 127.0,
});
}
if i.key_released(k) {
Expand Down

0 comments on commit eda28e9

Please sign in to comment.