Zebediah Figura : vkd3d: Do not append a newline to messages passed to d3d12_device_mark_as_removed().
Module: vkd3d Branch: master Commit: 3dfe0e17100df66d8ed6f5212aca4605c4571d60 URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=3dfe0e17100df66d8ed6f521... Author: Zebediah Figura <zfigura(a)codeweavers.com> Date: Fri Aug 13 16:37:44 2021 -0500 vkd3d: Do not append a newline to messages passed to d3d12_device_mark_as_removed(). Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- libs/vkd3d/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vkd3d/command.c b/libs/vkd3d/command.c index bf80a9d..a23177f 100644 --- a/libs/vkd3d/command.c +++ b/libs/vkd3d/command.c @@ -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; }
participants (1)
-
Alexandre Julliard