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:
Georg Lehmann 2021-07-20 15:04:47 +02:00 committed by Alexandre Julliard
parent c6a40ff64f
commit c2948c96d6

View file

@ -3614,6 +3614,9 @@ class VkRegistry(object):
_type = None
if not t.find("type") is None:
_type = t.find("type").text
tail = t.find("type").tail
if tail is not None:
_type += tail.strip()
basetype = VkBaseType(name, _type)
base_types.append(basetype)
type_info["data"] = basetype