Skip to content

Commit

Permalink
WebGPUTriangle: Remove useless string concatenation in warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
Beyley committed Nov 3, 2022
1 parent 6659d20 commit 47b083c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lab/Experiments/WebGPUTriangle/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ private static void WindowOnRender(double delta)

if (attempt == 0 && nextTexture == null)
{
Console.WriteLine("wgpu.SwapChainGetCurrentTextureView() failed; trying to create " + "a new swap chain...\n");
Console.WriteLine("wgpu.SwapChainGetCurrentTextureView() failed; trying to create a new swap chain...\n");
CreateSwapchain();
continue;
}
Expand Down

0 comments on commit 47b083c

Please sign in to comment.