mirror of
https://github.com/elliotnunn/macresources.git
synced 2025-08-05 21:25:00 +00:00
Bugfix: use 'append' method for extra byte.
This commit is contained in:
@@ -143,7 +143,7 @@ def GreggDecompress(src, dst, unpackSize, tabSize, comprFlags):
|
||||
pos += 1
|
||||
|
||||
if hasExtraByte: # have a got an extra byte at the end?
|
||||
dst.expand(src[pos]) # copy it over
|
||||
dst.append(src[pos]) # copy it over
|
||||
pos += 1
|
||||
|
||||
#print("Last input position: %d" % pos)
|
||||
|
Reference in New Issue
Block a user