winevulkan: Fix pointer typedef base types.
Signed-off-by: Georg Lehmann <dadschoorse@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c6a40ff64f
commit
c2948c96d6
|
@ -3614,6 +3614,9 @@ class VkRegistry(object):
|
||||||
_type = None
|
_type = None
|
||||||
if not t.find("type") is None:
|
if not t.find("type") is None:
|
||||||
_type = t.find("type").text
|
_type = t.find("type").text
|
||||||
|
tail = t.find("type").tail
|
||||||
|
if tail is not None:
|
||||||
|
_type += tail.strip()
|
||||||
basetype = VkBaseType(name, _type)
|
basetype = VkBaseType(name, _type)
|
||||||
base_types.append(basetype)
|
base_types.append(basetype)
|
||||||
type_info["data"] = basetype
|
type_info["data"] = basetype
|
||||||
|
|
Loading…
Reference in New Issue