Skip to content

Commit

Permalink
Move custom sound bank check before writing colors in encoder
Browse files Browse the repository at this point in the history
  • Loading branch information
kstefanowicz committed Aug 24, 2024
1 parent a1f5679 commit 785ef22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Beatmaps/Formats/LegacyBeatmapEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ public void Encode(TextWriter writer)
handleControlPoints(writer);

writer.WriteLine();
handleColours(writer);
handleCustomSoundBanks(writer);

writer.WriteLine();
handleCustomSoundBanks(writer);
handleColours(writer);

writer.WriteLine();
handleHitObjects(writer);
Expand Down

0 comments on commit 785ef22

Please sign in to comment.