formatting

This commit is contained in:
Christopher Herb
2023-07-10 18:11:42 +02:00
parent 7c1bd1c982
commit d0fcc225a1
4 changed files with 32 additions and 20 deletions

View File

@@ -33,12 +33,14 @@ public:
offset = _offset;
}
void make_pitch_weel(double _pitch, int _offset = 0) {
void make_pitch_weel(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_weel(double _mod, int _offset = 0)
{
type = midi_event_type::pitch_wheel;
data = _mod;
}