Fix inadvertent case fallthrough

This commit is contained in:
baldurk
2022-12-22 17:55:02 +00:00
parent c90d651646
commit 44f51d2bcc
+1 -1
View File
@@ -974,7 +974,7 @@ VkDriverInfo::VkDriverInfo(const VkPhysicalDeviceProperties &physProps,
switch(driverProps.driverID)
{
case VK_DRIVER_ID_GOOGLE_SWIFTSHADER:
case VK_DRIVER_ID_MESA_LLVMPIPE: m_Vendor = GPUVendor::Software;
case VK_DRIVER_ID_MESA_LLVMPIPE: m_Vendor = GPUVendor::Software; break;
case VK_DRIVER_ID_MOLTENVK: metalBackend = true;
default: break;
}