Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ABCParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down