Skip to content

Commit

Permalink
fix pathid being int on the wrong version
Browse files Browse the repository at this point in the history
  • Loading branch information
nesrak1 committed Sep 22, 2020
1 parent b22fe7d commit 2aebb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AssetTools.NET/Extra/MonoDeserializer/MonoDeserializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ private void SetPPtr(AssetTypeTemplateField field, bool dollar)

AssetTypeTemplateField pathID = new AssetTypeTemplateField();
pathID.name = "m_PathID";
if (format < 0x10)
if (format < 0x0E)
{
pathID.type = "int";
pathID.valueType = EnumValueTypes.Int32;
Expand Down

0 comments on commit 2aebb0c

Please sign in to comment.