From 97fc9b437daf8b61aa1e18448afe6f40bae906dd Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 22 Feb 2016 10:47:05 +0100 Subject: [PATCH] Fix loader-not-found error message --- tests/vulkan.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/vulkan.c b/tests/vulkan.c index dfc51710..cacba9c0 100644 --- a/tests/vulkan.c +++ b/tests/vulkan.c @@ -2106,8 +2106,7 @@ static void demo_init_connection(struct demo *demo) { } if (!glfwVulkanSupported()) { - printf("Cannot find a compatible Vulkan installable client driver " - "(ICD).\nExiting ...\n"); + printf("GLFW failed to find the Vulkan loader.\nExiting ...\n"); fflush(stdout); exit(1); }