Skip to content

Commit

Permalink
fix #85
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Dec 14, 2024
1 parent cc97a11 commit bfd2729
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fluXis.Game/Screens/Select/SelectScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -850,8 +850,9 @@ private void changeLetter(char letter)
return;

var item = currentItem;
var title = item.Metadata.Title;

var current = getLetter(item.Metadata.Title[0]);
var current = title.Length < 1 ? '#' : getLetter(title[0]);

if (current == letter)
{
Expand Down

0 comments on commit bfd2729

Please sign in to comment.