Skip to content

Commit

Permalink
Fixup carriage returns added to project settings (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonko0493 authored Sep 18, 2023
1 parent a29612b commit 1e97485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SerialLoops.Lib/ProjectSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public string Name {
string name = value.Length > 128 ? value[..63] : value;
for (int i = 0; i < Banner.GameName.Length; i++)
{
Banner.GameName[i] = name;
Banner.GameName[i] = name.Replace("\r\n", "\n");
}
}
}
Expand Down

0 comments on commit 1e97485

Please sign in to comment.