Skip to content

Commit ce7c2ba

Browse files
committed
Fix C053
1 parent a3b4530 commit ce7c2ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

XAT/XAT/Game/Formats/Tmb/Entries/C053Format.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ public class C053Format : TmbEntry
2020
public int Unk2 { get; set; } = 0;
2121

2222
[UserType]
23-
public int Unk3 { get; set; } = 0;
23+
public short Unk3 { get; set; } = 0;
2424

2525
[UserType]
26-
public int Unk4 { get; set; } = 0;
26+
public short Unk4 { get; set; } = 0;
2727

2828
[UserType]
2929
public int Unk5 { get; set; } = 0;
@@ -39,8 +39,8 @@ public C053Format(TmbReadContext context)
3939

4040
Unk1 = context.Reader.ReadInt32();
4141
Unk2 = context.Reader.ReadInt32();
42-
Unk3 = context.Reader.ReadInt32();
43-
Unk4 = context.Reader.ReadInt32();
42+
Unk3 = context.Reader.ReadInt16();
43+
Unk4 = context.Reader.ReadInt16();
4444
Unk5 = context.Reader.ReadInt32();
4545
}
4646

0 commit comments

Comments
 (0)