Skip to content

Commit

Permalink
Merge pull request #18 from VanStorm/master
Browse files Browse the repository at this point in the history
Yo-Scale fix, added G#4 from Yo scale as well
  • Loading branch information
ianespana committed Sep 20, 2019
2 parents ded6eb9 + 82f2e1d commit c48d63d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions ShawzinBot/ActionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,22 @@ public class ActionManager
{ 57, new[] {0,3,1,0} }, // A3
{ 58, new[] {0,3,2,0} }, // A#3
{ 59, new[] {0,3,3,0} }, // B3
{ 60, new[] {7,1,3,0} }, // C4
{ 60, new[] {8,1,3,0} }, // C4
{ 61, new[] {4,2,1,0} }, // C#4
{ 62, new[] {7,2,1,0} }, // D4
{ 62, new[] {8,2,1,0} }, // D4
{ 63, new[] {1,2,2,0} }, // D#4
{ 64, new[] {7,2,2,0} }, // E4
{ 64, new[] {8,2,2,0} }, // E4
{ 65, new[] {1,2,3,0} }, // F4
{ 66, new[] {1,3,1,0} }, // F#4
{ 67, new[] {7,2,3,0} }, // G4
{ 68, new[] {7,3,1,1} }, // G#4
{ 69, new[] {7,3,1,0} }, // A4
{ 67, new[] {8,2,3,0} }, // G4
{ 68, new[] {6,2,3,0} }, // G#4
{ 69, new[] {8,3,1,0} }, // A4
{ 70, new[] {1,3,3,0} }, // A#4
{ 71, new[] {4,3,2,1} }, // B5
{ 72, new[] {4,3,2,0} }, // C5
{ 73, new[] {4,3,3,0} }, // C#5
{ 74, new[] {7,3,3,0} }, // D5
{ 75, new[] {6,3,3,0} }, // D#5
{ 74, new[] {8,3,3,0} }, // D5
{ 75, new[] {7,3,3,0} }, // D#5
};

private static Dictionary<int, Keys> shawzinFrets = new Dictionary<int, Keys>
Expand All @@ -81,7 +81,7 @@ public class ActionManager
{ 1, Keys.Tab }, // Scale change
};

private static int scaleSize = 8;
private static int scaleSize = 9;

private static int activeScale = 0;

Expand Down

0 comments on commit c48d63d

Please sign in to comment.