- once the Vulkan backend booted all the remaining vulkan calls are unrecoverable (unless the code calling it gets actively involved, which means that particular action is not exceptional in nature and shouldn't be done as an exception)

This commit is contained in:
Magnus Norddahl 2019-04-09 14:25:18 +02:00
commit c9dbb589e2
3 changed files with 14 additions and 14 deletions

View file

@ -520,6 +520,6 @@ uint32_t VulkanDevice::FindMemoryType(uint32_t typeFilter, VkMemoryPropertyFlags
return i;
}
I_Error("failed to find suitable memory type!");
I_FatalError("failed to find suitable memory type!");
return 0;
}