aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodeView.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-29 00:00:39 +0000
committerDavid Robillard <d@drobilla.net>2013-12-29 00:00:39 +0000
commitc52c772d98e4a96ed5420c70071e62155c467f75 (patch)
tree48e624d4a4d0f971ddcdee857fdf3f20feec9ee9 /src/gui/NodeView.cpp
parent21ce8fc665c936d7c793ad5d8b09696fec599d67 (diff)
downloadmachina-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
Diffstat (limited to 'src/gui/NodeView.cpp')
-rw-r--r--src/gui/NodeView.cpp4
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;