We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b4530 commit ce7c2baCopy full SHA for ce7c2ba
XAT/XAT/Game/Formats/Tmb/Entries/C053Format.cs
@@ -20,10 +20,10 @@ public class C053Format : TmbEntry
20
public int Unk2 { get; set; } = 0;
21
22
[UserType]
23
- public int Unk3 { get; set; } = 0;
+ public short Unk3 { get; set; } = 0;
24
25
26
- public int Unk4 { get; set; } = 0;
+ public short Unk4 { get; set; } = 0;
27
28
29
public int Unk5 { get; set; } = 0;
@@ -39,8 +39,8 @@ public C053Format(TmbReadContext context)
39
40
Unk1 = context.Reader.ReadInt32();
41
Unk2 = context.Reader.ReadInt32();
42
- Unk3 = context.Reader.ReadInt32();
43
- Unk4 = context.Reader.ReadInt32();
+ Unk3 = context.Reader.ReadInt16();
+ Unk4 = context.Reader.ReadInt16();
44
Unk5 = context.Reader.ReadInt32();
45
}
46
0 commit comments