winevulkan: Print all the arguments in make_vulkan.

Signed-off-by: Michał Janiszewski <janisozaur@gmail.com>
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michał Janiszewski 2018-10-12 00:07:54 +02:00 committed by Alexandre Julliard
parent ad242e7d41
commit 83fd23347a

View file

@ -1162,7 +1162,7 @@ class VkParam(object):
self._set_conversions()
def __repr__(self):
return "{0} {1} {2} {3} {4}".format(self.const, self.type, self.pointer, self.name, self.array_len, self.dyn_array_len)
return "{0} {1} {2} {3} {4} {5}".format(self.const, self.type, self.pointer, self.name, self.array_len, self.dyn_array_len)
@staticmethod
def from_xml(param, types):