From 947523ab880b6b3cc0fef08c48ddd4714c82c302 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Wed, 20 May 2020 19:00:18 +0200 Subject: [PATCH] use uint32_t for win --- src/vkh_phyinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vkh_phyinfo.c b/src/vkh_phyinfo.c index 5d1d5c6..dedbbb7 100644 --- a/src/vkh_phyinfo.c +++ b/src/vkh_phyinfo.c @@ -65,7 +65,7 @@ VkhPhyInfo vkh_phyinfo_create (VkPhysicalDevice phy, VkSurfaceKHR surface) { } } //try to find suitable queue if no dedicated one found - for (uint j=0; jqueueCount; j++){ + for (uint32_t j=0; jqueueCount; j++){ if (pi->queues[j].queueFlags & VK_QUEUE_GRAPHICS_BIT) { VkBool32 present; if (surface) -- 2.47.3