Skip to content

Commit

Permalink
Change unicode to the character itself (YARC-Official#587)
Browse files Browse the repository at this point in the history
For anyone reading gets a better idea of what is going on
  • Loading branch information
TheFatBastid authored Oct 28, 2023
1 parent b5283ba commit 8942741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script/Gameplay/HUD/LyricBar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private string GetDisplayTextWithSpace(string lyricText)
// Special replacements
lyricText = lyricText.Replace('=', '-');
lyricText = lyricText.Replace('_', ' ');
lyricText = lyricText.Replace('§', '\u203F');
lyricText = lyricText.Replace('§', '');

// Remove all other diacritics
lyricText = _lyricDiacriticRegex.Replace(lyricText, "");
Expand Down

0 comments on commit 8942741

Please sign in to comment.