diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/NodeView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/NodeView.cpp b/src/gui/NodeView.cpp index 30df429..a1b96e4 100644 --- a/src/gui/NodeView.cpp +++ b/src/gui/NodeView.cpp @@ -107,8 +107,8 @@ NodeView::on_event(GdkEvent* event) static void midi_note_name(uint8_t num, uint8_t buf[8]) { - static const char* notes = "CCDDEFFGGAAB"; - static const bool is_sharp[] = { 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0 }; + static const char* notes = "CCDDEFFGGAAB"; + static const bool is_sharp[] = { 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0 }; const uint8_t octave = num / 12; const uint8_t id = num - octave * 12; |