Skip to content

Commit

Permalink
Fix tabbing in IniSerializer
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBoxyBear authored Oct 28, 2024
1 parent fd1cf93 commit 5aabd2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChartTools/IO/Ini/IniSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public override IEnumerable<string> Serialize()
yield return IniFormatting.Line(key, value.ToString());

foreach (var data in Content.UnidentifiedData.Where(x => x.Origin is FileType.Ini))
yield return IniFormatting.Line(data.Key, data.Value);
yield return IniFormatting.Line(data.Key, data.Value);

if (Content.AlbumTrack is not null)
{
Expand Down

0 comments on commit 5aabd2f

Please sign in to comment.