Enum constant in boolean context

error: enum constant in boolean context [-Werror=int-in-bool-context]
This commit is contained in:
K. S. Ernest (iFire) Lee 2021-06-30 01:36:15 -07:00
parent 24c6ee9f56
commit d87526b391

View file

@ -1752,7 +1752,7 @@ Error VulkanContext::prepare_buffers() {
print_verbose("Vulkan: Early suboptimal swapchain.");
break;
} else if (err != VK_SUCCESS) {
ERR_BREAK(ERR_CANT_CREATE);
ERR_BREAK_MSG(err != VK_SUCCESS, "Vulkan: Did not create swapchain successfully.");
} else {
w->semaphore_acquired = true;
}