Skip to content

Commit

Permalink
Merge pull request #27 from hiroxpepe/develop
Browse files Browse the repository at this point in the history
fix: #26 changed of sequence gate time.
  • Loading branch information
hiroxpepe authored Oct 18, 2022
2 parents d8996ba + 6082305 commit 8e73abc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Meowziq/Value/Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,10 @@ public bool Use {
/// converts the text mark to the note value.
/// </summary>
public static int ToGateValue(string target) {
//if (target.Equals(">")) { return 95 /*(int) (127 * 75 * 0.01f)*/; } // ≒95
//if (target.Equals("*")) { return 64 /*(int) (127 * 50 * 0.01f)*/; } // ≒64
//if (target.Equals("+")) { return 32 /*(int) (127 * 25 * 0.01f)*/; } // ≒32
return 30;//0; // FIXME: this value is tick!!!!!!
if (target.Equals(">")) { return 90; }
if (target.Equals("*")) { return 60; }
if (target.Equals("+")) { return 30; }
return 0;
}
}

Expand Down

0 comments on commit 8e73abc

Please sign in to comment.