Skip to content

Commit

Permalink
Stop trying to sort hirc items in init.bnk
Browse files Browse the repository at this point in the history
  • Loading branch information
Nifyr committed Feb 4, 2024
1 parent 5bec196 commit dc54526
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Wwise Bank Converter/Wwise.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,9 @@ public override IEnumerable<byte> Serialize()

private void SortHircItems()
{
if (loadedItem.Any(hi => hi is Bus))
return;

List<HircItem> newList = new();

Dictionary<uint, HircItem> hircLookup = new();
Expand Down

0 comments on commit dc54526

Please sign in to comment.