Allows unpacking renpy 8 archives

This commit is contained in:
schwert 2022-07-17 20:11:19 +02:00
parent 9a58396f95
commit e42af42d9e

View file

@ -17,6 +17,9 @@ if sys.version_info[0] >= 3:
return text
def _unmangle(data):
if type(data) == bytes:
return data
else:
return data.encode('latin1')
def _unpickle(data):