From f5d9059470f2d75113240e16817267517554096d Mon Sep 17 00:00:00 2001 From: JPikachu Date: Tue, 8 Apr 2025 03:08:22 +0100 Subject: [PATCH] Attempt to fix building Why do we always have so much build errors!?! --- src/video_core/vulkan_common/vulkan_raii.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/vulkan_common/vulkan_raii.h b/src/video_core/vulkan_common/vulkan_raii.h index 74748fe557..418acc13bf 100644 --- a/src/video_core/vulkan_common/vulkan_raii.h +++ b/src/video_core/vulkan_common/vulkan_raii.h @@ -41,7 +41,7 @@ public: throw std::runtime_error("Failed to allocate Vulkan buffer memory"); } - if (vkBindBufferMemory(device_, buffer_, buffer_memory_, 0) != VK_SUCCESS) { + if Vulkan::vk:DeviceDispatch::vkBindBufferMemory(device_, buffer_, buffer_memory_, 0) != VK_SUCCESS) { throw std::runtime_error("Failed to bind Vulkan buffer memory"); } }