Skip to content

Commit

Permalink
Fix #49
Browse files Browse the repository at this point in the history
  • Loading branch information
Chysn committed Feb 12, 2020
1 parent ca48991 commit 46f231d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions software/o_c_REV/APP_MIDI.ino
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,13 @@ struct CaptainMIDILog {

if (message == 0 || message == 1) {
graphics.print(midi_note_numbers[data1]);
graphics.setPrintPos(103 + x_offset, y);
graphics.setPrintPos(91 + x_offset, y);
graphics.print(data2); // Velocity
}

if (message == 2 || message == 3) {
if (message == 2) graphics.print(data1); // Controller number
graphics.setPrintPos(103 + x_offset, y);
graphics.setPrintPos(91 + x_offset, y);
graphics.print(data2); // Value
}

Expand Down
2 changes: 1 addition & 1 deletion software/o_c_REV/OC_version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef OC_VERSION_H_
#define OC_VERSION_H_
#define OC_VERSION "v1.8"
#define OC_VERSION "v1.8A"
#endif

0 comments on commit 46f231d

Please sign in to comment.