Explorar o código

Merge pull request #9573 from liamwhite/optional

vulkan_device: avoid attempt to access empty optional
Narr the Reg %!s(int64=3) %!d(string=hai) anos
pai
achega
cc92b7fd94
Modificáronse 1 ficheiros con 6 adicións e 2 borrados
  1. 6 2
      src/video_core/vulkan_common/vulkan_device.cpp

+ 6 - 2
src/video_core/vulkan_common/vulkan_device.cpp

@@ -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() {