diff --git a/gfx/common/vulkan_common.c b/gfx/common/vulkan_common.c index 218ca4297f..db3a8a36f1 100644 --- a/gfx/common/vulkan_common.c +++ b/gfx/common/vulkan_common.c @@ -1088,7 +1088,10 @@ bool vulkan_context_init(gfx_ctx_vulkan_data_t *vk, cached_instance = NULL; } else if (VKFUNC(vkCreateInstance)(&info, NULL, &vk->context.instance) != VK_SUCCESS) + { + RARCH_ERR("Failed to create Vulkan instance.\n"); return false; + } VK_GET_INSTANCE_PROC_ADDR(vk, vk->context.instance, GetPhysicalDeviceFormatProperties);