diff options
author | David Robillard <d@drobilla.net> | 2013-12-29 00:00:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-29 00:00:39 +0000 |
commit | c52c772d98e4a96ed5420c70071e62155c467f75 (patch) | |
tree | 48e624d4a4d0f971ddcdee857fdf3f20feec9ee9 | |
parent | 21ce8fc665c936d7c793ad5d8b09696fec599d67 (diff) | |
download | machina-c52c772d98e4a96ed5420c70071e62155c467f75.tar.gz machina-c52c772d98e4a96ed5420c70071e62155c467f75.tar.bz2 machina-c52c772d98e4a96ed5420c70071e62155c467f75.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5222 a436a847-0d15-0410-975c-d299462d15a1
-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; |