File tree 1 file changed +4
-4
lines changed
XAT/XAT/Game/Formats/Tmb/Entries
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ public class C043Format : TmbEntry
23
23
public int Unk3 { get ; set ; } = 0 ;
24
24
25
25
[ UserType ]
26
- public int Unk4 { get ; set ; } = 0 ;
26
+ public short Unk4 { get ; set ; } = 0 ;
27
27
28
28
[ UserType ]
29
- public int Unk5 { get ; set ; } = 0 ;
29
+ public short Unk5 { get ; set ; } = 0 ;
30
30
31
31
[ UserType ]
32
32
public int Unk6 { get ; set ; } = 0 ;
@@ -43,8 +43,8 @@ public C043Format(TmbReadContext context)
43
43
Unk1 = context . Reader . ReadInt32 ( ) ;
44
44
Unk2 = context . Reader . ReadInt32 ( ) ;
45
45
Unk3 = context . Reader . ReadInt32 ( ) ;
46
- Unk4 = context . Reader . ReadInt32 ( ) ;
47
- Unk5 = context . Reader . ReadInt32 ( ) ;
46
+ Unk4 = context . Reader . ReadInt16 ( ) ;
47
+ Unk5 = context . Reader . ReadInt16 ( ) ;
48
48
Unk6 = context . Reader . ReadInt32 ( ) ;
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments