1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

wined3d: Slightly adjust an ERR in shader_spirv_compile_shader().

We're not necessarily compiling DXBC shaders here after commit
1474f5cc47.
This commit is contained in:
Henri Verbeet 2024-02-26 16:51:41 +01:00 committed by Alexandre Julliard
parent 91e5d21cdf
commit 37bb8c14e0

View file

@ -325,7 +325,7 @@ static VkShaderModule shader_spirv_compile_shader(struct wined3d_context_vk *con
if (ret < 0)
{
ERR("Failed to compile DXBC, ret %d.\n", ret);
ERR("Failed to compile shader, ret %d.\n", ret);
return VK_NULL_HANDLE;
}