Skip to content

Commit

Permalink
Fix shifted sample bug (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Feb 14, 2017
1 parent f2a9075 commit c05d32f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/state/main_looper_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,15 @@ impl<NoteTracker: MidiNoteTracker> StateController for MainLooperController<Note
self.looper.toggle_recording();
},

AbsMidiEvent {
message: TypedMidiMessage::NoteOff {
key: CONTROL_KEY_NUMBER,
channel: CONTROL_CHANNEL_NUMBER,
..
},
..
} => {},

_ => self.looper.on_midi_event(&event),

}
Expand Down

0 comments on commit c05d32f

Please sign in to comment.