[vulkan] Correct type of queue family

No idea why I had int32_t instead of uint32_t.
This commit is contained in:
Bill Currie 2023-03-27 23:50:57 +09:00
parent a1e15603a3
commit aba057b827

View file

@ -12,7 +12,7 @@ typedef struct qfv_devfuncs_s {
typedef struct qfv_queue_s { typedef struct qfv_queue_s {
struct qfv_device_s *device; struct qfv_device_s *device;
int32_t queueFamily; uint32_t queueFamily;
VkQueue queue; VkQueue queue;
} qfv_queue_t; } qfv_queue_t;