Skip to content

Commit

Permalink
Merge pull request #71 from MrBrixican/packer_duplicate_trim_fix
Browse files Browse the repository at this point in the history
Packer.CombineDuplicates now works correctly with Packer.Trim
  • Loading branch information
NoelFB authored Feb 10, 2024
2 parents f6e4e4d + ddac6d8 commit d1dc157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Images/Packer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public unsafe Output Pack()
foreach (var entry in result.Entries)
if (entry.Index == source.DuplicateOf.Value)
{
result.Entries.Add(new(source.Index, source.Name, entry.Page, entry.Source, entry.Frame));
result.Entries.Add(new(source.Index, source.Name, entry.Page, entry.Source, source.Frame));
break;
}
}
Expand Down

0 comments on commit d1dc157

Please sign in to comment.