oops, shouldn't double int8array length
This commit is contained in:
parent
f23b139f06
commit
cc32ef9d8c
|
|
@ -42,12 +42,12 @@
|
|||
for i in range(len):
|
||||
retVal.append(self.getInt32())
|
||||
elif subatomicType == STUint8array:
|
||||
len = self.getUint8() >> 1
|
||||
len = self.getUint8()
|
||||
retVal = []
|
||||
for i in range(len):
|
||||
retVal.append(self.getUint8())
|
||||
elif subatomicType == STUint16array:
|
||||
len = self.getUint16()
|
||||
len = self.getUint16() >> 1
|
||||
retVal = []
|
||||
for i in range(len):
|
||||
retVal.append(self.getUint16())
|
||||
|
|
|
|||
Loading…
Reference in New Issue