Georg Lehmann : winevulkan: Fix pointer typedef base types.
Module: wine Branch: master Commit: c2948c96d63694b1527c94dce7d33e8594b43b29 URL: https://source.winehq.org/git/wine.git/?a=commit;h=c2948c96d63694b1527c94dce... Author: Georg Lehmann <dadschoorse(a)gmail.com> Date: Tue Jul 20 15:04:47 2021 +0200 winevulkan: Fix pointer typedef base types. Signed-off-by: Georg Lehmann <dadschoorse(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winevulkan/make_vulkan | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan index e8534cbd5f5..31164406cab 100755 --- a/dlls/winevulkan/make_vulkan +++ b/dlls/winevulkan/make_vulkan @@ -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
participants (1)
-
Alexandre Julliard