diff --git a/gfx/drivers/d3d11.c b/gfx/drivers/d3d11.c index 81f712714b..aeefa5494b 100644 --- a/gfx/drivers/d3d11.c +++ b/gfx/drivers/d3d11.c @@ -2016,7 +2016,10 @@ static bool d3d11_init_swapchain(d3d11_video_t* d3d11, DXGISetMaximumFrameLatency(d3d11->swapChain, max_latency); DXGIGetMaximumFrameLatency(d3d11->swapChain, &cur_latency); - RARCH_LOG("[D3D11]: Requesting %u maximum frame latency, using %u.\n", max_latency, cur_latency); + RARCH_LOG("[D3D11]: Requesting %u maximum frame latency, using %u%s.\n", + settings->uints.video_max_frame_latency, + cur_latency, + (d3d11->flags & D3D11_ST_FLAG_WAIT_FOR_VBLANK) ? " with WaitForVBlank" : ""); } #ifdef HAVE_DXGI_HDR diff --git a/gfx/drivers/d3d12.c b/gfx/drivers/d3d12.c index 7055465126..a1b26d4a1b 100644 --- a/gfx/drivers/d3d12.c +++ b/gfx/drivers/d3d12.c @@ -2371,7 +2371,10 @@ static bool d3d12_init_swapchain(d3d12_video_t* d3d12, DXGISetMaximumFrameLatency(d3d12->chain.handle, max_latency); DXGIGetMaximumFrameLatency(d3d12->chain.handle, &cur_latency); - RARCH_LOG("[D3D12]: Requesting %u maximum frame latency, using %u.\n", max_latency, cur_latency); + RARCH_LOG("[D3D12]: Requesting %u maximum frame latency, using %u%s.\n", + settings->uints.video_max_frame_latency, + cur_latency, + (d3d12->flags & D3D12_ST_FLAG_WAIT_FOR_VBLANK) ? " with WaitForVBlank" : ""); } #ifdef HAVE_WINDOW