vkd3d: Update a warning so that it aligns with the check that triggers it.

This commit is contained in:
Giovanni Mascellani 2023-08-17 16:33:40 +02:00 committed by Alexandre Julliard
parent 3ca2259807
commit 8f8c89fb87
Notes: Alexandre Julliard 2023-08-23 22:50:47 +02:00
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/307

View File

@ -375,8 +375,8 @@ static HRESULT d3d12_root_signature_info_count_descriptors(struct d3d12_root_sig
if (unbounded && range->OffsetInDescriptorsFromTableStart == D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND)
{
WARN("An unbounded range with offset D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND occurs after "
"another unbounded range.\n");
WARN("A range with offset D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND occurs after "
"an unbounded range.\n");
return E_INVALIDARG;
}