Skip to content

Commit

Permalink
Fix parsing secondary textures
Browse files Browse the repository at this point in the history
  • Loading branch information
astro75 committed Nov 1, 2023
1 parent ed7b0a2 commit 75ebe67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AssetStudio/Classes/Sprite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class SecondarySpriteTexture
public SecondarySpriteTexture(ObjectReader reader)
{
texture = new PPtr<Texture2D>(reader);
name = reader.ReadStringToNull();
name = reader.ReadAlignedString();
}
}

Expand Down

0 comments on commit 75ebe67

Please # to comment.