Fix offset for 009a

This commit is contained in:
Viktor Dragomiretskyy 2020-06-23 02:46:42 +12:00
parent 68a3dd7042
commit d465573b2a

View file

@ -120,7 +120,7 @@ def append_new_image(key=0, prev=b''):
raise Exception('Response size does not match %d != %d', l, len(res))
# FIXME check how it's done rather than using a hardcoded offsets
res, new = res[:0x6c], res[0x6c:]
res, new = res[:0x74], res[0x74:]
return (new_key, res, new)