File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
MLAPI/NetworkingManagerComponents/Cryptography Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
- using System ;
1
+ using MLAPI . NetworkingManagerComponents . Binary ;
2
+ using System ;
2
3
using System . Collections . Generic ;
3
4
using System . Linq ;
4
5
using System . Text ;
@@ -97,11 +98,11 @@ uint ComputeIndex(int block, int idx)
97
98
result . i3 += d ;
98
99
result . i4 += e ;
99
100
}
100
- result . i0 = Support . SwapEndian ( result . i0 ) ;
101
- result . i1 = Support . SwapEndian ( result . i1 ) ;
102
- result . i2 = Support . SwapEndian ( result . i2 ) ;
103
- result . i3 = Support . SwapEndian ( result . i3 ) ;
104
- result . i4 = Support . SwapEndian ( result . i4 ) ;
101
+ result . i0 = BinaryHelpers . SwapEndian ( result . i0 ) ;
102
+ result . i1 = BinaryHelpers . SwapEndian ( result . i1 ) ;
103
+ result . i2 = BinaryHelpers . SwapEndian ( result . i2 ) ;
104
+ result . i3 = BinaryHelpers . SwapEndian ( result . i3 ) ;
105
+ result . i4 = BinaryHelpers . SwapEndian ( result . i4 ) ;
105
106
return result ;
106
107
}
107
108
You can’t perform that action at this time.
0 commit comments