Skip to content

Commit

Permalink
Fix C043 size
Browse files Browse the repository at this point in the history
  • Loading branch information
AsgardXIV committed Aug 28, 2022
1 parent 2a2f637 commit 7f8bf01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions XAT/XAT/Game/Formats/Tmb/Entries/C043Format.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ public class C043Format : TmbEntry
public int Unk3 { get; set; } = 0;

[UserType]
public int Unk4 { get; set; } = 0;
public short Unk4 { get; set; } = 0;

[UserType]
public int Unk5 { get; set; } = 0;
public short Unk5 { get; set; } = 0;

[UserType]
public int Unk6 { get; set; } = 0;
Expand All @@ -43,8 +43,8 @@ public C043Format(TmbReadContext context)
Unk1 = context.Reader.ReadInt32();
Unk2 = context.Reader.ReadInt32();
Unk3 = context.Reader.ReadInt32();
Unk4 = context.Reader.ReadInt32();
Unk5 = context.Reader.ReadInt32();
Unk4 = context.Reader.ReadInt16();
Unk5 = context.Reader.ReadInt16();
Unk6 = context.Reader.ReadInt32();
}

Expand Down

0 comments on commit 7f8bf01

Please sign in to comment.