This commit is contained in:
Kovid Goyal 2012-03-13 13:38:23 +05:30
parent fb41c8c881
commit 1195c37da5

View File

@ -1171,6 +1171,8 @@ class FontRecord(object): # {{{
else:
print ('Unknown font record with fields: %s' %
[self.uncompressed_size, self.unknown1, self.unknown2])
print ('\tAdditional fields: %s'%((
struct.unpack_from(b'>LL', self.raw, 16),)))
self.name = '%s.%s'%(name, self.ext)
def dump(self, folder):