SDL: Make it clear Vulkan check is not an error.

This commit is contained in:
Unknown W. Brackets 2019-03-23 08:32:18 -07:00
parent 3e4faea6ad
commit f042dc1773

View File

@ -350,9 +350,9 @@ int main(int argc, char *argv[]) {
SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0");
if (VulkanMayBeAvailable()) {
printf("Vulkan might be available.\n");
printf("DEBUG: Vulkan might be available.\n");
} else {
printf("Vulkan is not available.\n");
printf("DEBUG: Vulkan is not available, not using Vulkan.\n");
}
int set_xres = -1;