Fixed logged method names

This commit is contained in:
cdozdil
2026-02-05 13:50:55 +03:00
parent 66ed740278
commit b99c8d053d
+2 -3
View File
@@ -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;
}