Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from portalsoup/ukulele
Browse files Browse the repository at this point in the history
  • Loading branch information
besya authored Sep 28, 2023
2 parents b48e18c + c7cc6b4 commit bd8ef40
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tunings.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,16 @@ const TUNING BassDropA5 = {
}
};

#define TUNINGS_COUNT 14
const TUNING UkuleleStandard4 = {
"Ukulele Standard 4", 4, {
{"String 1", A4},
{"String 2", E4},
{"String 3", C4},
{"String 4", G4}
}
};

#define TUNINGS_COUNT 15

TUNING TuningList[TUNINGS_COUNT] = {
ScientificPitch,
Expand All @@ -182,7 +191,8 @@ TUNING TuningList[TUNINGS_COUNT] = {
BassStandardTenor5,
BassDropD4,
BassD4,
BassDropA5
BassDropA5,
UkuleleStandard4
};

#endif //TUNINGS

0 comments on commit bd8ef40

Please sign in to comment.