vulkan_device: avoid attempt to access empty optional

This commit is contained in:
Liam 2023-01-06 21:23:21 -05:00
parent c0f17e1b27
commit 444b25bae1

View file

@ -1520,8 +1520,12 @@ void Device::SetupFamilies(VkSurfaceKHR surface) {
LOG_ERROR(Render_Vulkan, "Device lacks a present queue");
throw vk::Exception(VK_ERROR_FEATURE_NOT_PRESENT);
}
graphics_family = *graphics;
present_family = *present;
if (graphics) {
graphics_family = *graphics;
}
if (present) {
present_family = *present;
}
}
void Device::SetupFeatures() {