From 8d6992f17c98ae9f635e8ae2d0712c96a5a3bc21 Mon Sep 17 00:00:00 2001 From: Christopher Herb Date: Mon, 10 Jul 2023 18:15:59 +0200 Subject: [PATCH] fixed typo --- synth/midi_event.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synth/midi_event.h b/synth/midi_event.h index 3fa8e3b..747a7d3 100644 --- a/synth/midi_event.h +++ b/synth/midi_event.h @@ -33,13 +33,13 @@ public: offset = _offset; } - void make_pitch_weel(double _pitch, int _offset = 0) + void make_pitch_wheel(double _pitch, int _offset = 0) { type = midi_event_type::pitch_wheel; data = _pitch; } - void make_mod_weel(double _mod, int _offset = 0) + void make_mod_wheel(double _mod, int _offset = 0) { type = midi_event_type::pitch_wheel; data = _mod;