From b99c8d053dc0fa49246bb7e4be3ebd2b05a04147 Mon Sep 17 00:00:00 2001 From: cdozdil Date: Thu, 5 Feb 2026 13:50:55 +0300 Subject: [PATCH] Fixed logged method names --- OptiScaler/upscalers/xess/XeSSFeature_Vk.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/OptiScaler/upscalers/xess/XeSSFeature_Vk.cpp b/OptiScaler/upscalers/xess/XeSSFeature_Vk.cpp index c5731d57..783fcbb8 100644 --- a/OptiScaler/upscalers/xess/XeSSFeature_Vk.cpp +++ b/OptiScaler/upscalers/xess/XeSSFeature_Vk.cpp @@ -109,12 +109,11 @@ bool XeSSFeature_Vk::Init(VkInstance InInstance, VkPhysicalDevice InPD, VkDevice { ScopedSkipSpoofing skipSpoofing {}; - auto ret = XeSSProxy::VKCreateContext()(InInstance, InPD, InDevice, &_xessContext); if (ret != XESS_RESULT_SUCCESS) { - LOG_ERROR("xessD3D12CreateContext error: {0}", ResultToString(ret)); + LOG_ERROR("VKCreateContext error: {0}", ResultToString(ret)); return false; } @@ -262,7 +261,7 @@ bool XeSSFeature_Vk::Init(VkInstance InInstance, VkPhysicalDevice InPD, VkDevice if (ret != XESS_RESULT_SUCCESS) { - LOG_ERROR("xessD3D12Init error: {0}", ResultToString(ret)); + LOG_ERROR("VKInit error: {0}", ResultToString(ret)); return false; }