File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,11 @@ public void Read(BankReader reader)
24
24
FadeOffset = reader . ReadInt32 ( ) ;
25
25
CueFilterHash = reader . ReadUInt32 ( ) ;
26
26
JumpToID = reader . ReadUInt32 ( ) ;
27
- JumpToType = ( JumpToSelType ) reader . ReadUInt16 ( ) ;
27
+ if ( reader . Version > 132 )
28
+ {
29
+ JumpToType = ( JumpToSelType ) reader . ReadUInt16 ( ) ;
30
+ }
31
+
28
32
EntryType = ( TransitionEntryType ) reader . ReadUInt16 ( ) ;
29
33
PlayPreEntry = reader . ReadByte ( ) ;
30
34
DestMatchSourceCueName = reader . ReadByte ( ) ;
Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ public void Read(BankReader reader)
20
20
{
21
21
TrackID = reader . ReadUInt32 ( ) ;
22
22
SourceID = reader . ReadUInt32 ( ) ;
23
- EventID = reader . ReadUInt32 ( ) ;
23
+ if ( reader . Version > 132 )
24
+ {
25
+ EventID = reader . ReadUInt32 ( ) ;
26
+ }
27
+
24
28
PlayAt = reader . ReadDouble ( ) ;
25
29
BeginTrimOffset = reader . ReadDouble ( ) ;
26
30
EndTrimOffset = reader . ReadDouble ( ) ;
You can’t perform that action at this time.
0 commit comments