Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lottev1991 committed Aug 10, 2023
1 parent 280a2a4 commit b8e4652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau.Plugin.Builtin/ENDeltaPhonemizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected override string[] GetSymbols(Note note) {
foreach (string s in original) {
if (diphthongs.Contains(s) && !HasOto($"{s} b", note.tone)) {
modified.AddRange(new string[] { s[0].ToString(), s[1].ToString() });
} else if (affricates.Contains(s) && (!HasOto($"i {s}", note.tone) && !HasOto($"i: {s}", note.tone))) {
} else if (affricates.Contains(s) && !HasOto($"i {s}", note.tone) && !HasOto($"i: {s}", note.tone)) {
modified.AddRange(new string[] { s[0].ToString(), s[1].ToString() });
} else {
modified.Add(s);
Expand Down

0 comments on commit b8e4652

Please sign in to comment.