vkd3d: Do not append a newline to messages passed to d3d12_device_mark_as_removed().

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2021-08-13 16:37:44 -05:00 committed by Alexandre Julliard
parent c08a9cff7f
commit 3dfe0e1710

View File

@ -5864,7 +5864,7 @@ static void STDMETHODCALLTYPE d3d12_command_queue_ExecuteCommandLists(ID3D12Comm
if (cmd_list->is_recording)
{
d3d12_device_mark_as_removed(command_queue->device, DXGI_ERROR_INVALID_CALL,
"Command list %p is in recording state.\n", command_lists[i]);
"Command list %p is in recording state.", command_lists[i]);
vkd3d_free(buffers);
return;
}