From 0b4ad8bc747f522255dee0c8cbd0e4e67b1bc7aa Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Wed, 3 Dec 2025 02:12:05 -0400 Subject: [PATCH] another one --- src/video_core/vulkan_common/vulkan_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 32596dc656..7f75e7698b 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -939,7 +939,7 @@ bool Device::HasTimelineSemaphore() const { return false; } - if (driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY) { + if (GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY) { // Drop the variant bits before comparing to the minimum supported timeline build. const u32 driver_version = (GetDriverVersion() << 3) >> 3; constexpr u32 min_timeline_driver = VK_MAKE_API_VERSION(0, 500, 800, 51);