[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
1 changed files with 1 additions and 1 deletions

View File

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