Remove USHORT vs uint16 inconsistency

This commit is contained in:
Behdad Esfahbod 2013-11-23 19:19:48 -05:00
parent 5962268b79
commit ea017bd66f
2 changed files with 4 additions and 5 deletions

View File

@ -340,6 +340,5 @@ converterMapping = {
}
# equivalents:
converterMapping["USHORT"] = converterMapping["uint16"]
converterMapping["fixed32"] = converterMapping["Fixed"]

View File

@ -357,8 +357,8 @@ otData = [
]),
('ExtensionPosFormat1', [
('USHORT', 'ExtFormat', None, None, 'Format identifier. Set to 1.'),
('USHORT', 'ExtensionLookupType', None, None, 'Lookup type of subtable referenced by ExtensionOffset (i.e. the extension subtable).'),
('uint16', 'ExtFormat', None, None, 'Format identifier. Set to 1.'),
('uint16', 'ExtensionLookupType', None, None, 'Lookup type of subtable referenced by ExtensionOffset (i.e. the extension subtable).'),
('LOffset', 'ExtSubTable', None, None, 'Array of offsets to Lookup tables-from beginning of LookupList -zero based (first lookup is Lookup index = 0)'),
]),
@ -585,8 +585,8 @@ otData = [
]),
('ExtensionSubstFormat1', [
('USHORT', 'ExtFormat', None, None, 'Format identifier. Set to 1.'),
('USHORT', 'ExtensionLookupType', None, None, 'Lookup type of subtable referenced by ExtensionOffset (i.e. the extension subtable).'),
('uint16', 'ExtFormat', None, None, 'Format identifier. Set to 1.'),
('uint16', 'ExtensionLookupType', None, None, 'Lookup type of subtable referenced by ExtensionOffset (i.e. the extension subtable).'),
('LOffset', 'ExtSubTable', None, None, 'Array of offsets to Lookup tables-from beginning of LookupList -zero based (first lookup is Lookup index = 0)'),
]),