From 8e77b54ef9cf02bb2c6e6f1c06ceaa717a10a5be Mon Sep 17 00:00:00 2001 From: c01dc0ffee <38895080+c01dc0ffee@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:58:35 -0700 Subject: [PATCH] fix: adjust default octave Flipping a single bit in the source code brings the default octave from 3 down to 2, as intended by the original comment. --- src/ABCParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ABCParser.cs b/src/ABCParser.cs index ab542b9..a656aca 100644 --- a/src/ABCParser.cs +++ b/src/ABCParser.cs @@ -445,7 +445,7 @@ private bool ParseNote(string inString, ref int i) { Note newNote = new Note(); int noteIndex = -1; - int octaveIndex = 3; // 4 is middle, but 2 sounds MUCH better - start there + int octaveIndex = 2; // 4 is middle, but 2 sounds MUCH better - start there bool sharpDetected = false; bool flatDetected = false; bool naturalDetected = false;