From c52c772d98e4a96ed5420c70071e62155c467f75 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Dec 2013 00:00:39 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5222 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/NodeView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit v1.2.1