c/main: Fix copy typo

This commit is contained in:
Jakob Bornecrantz 2022-05-08 10:23:17 +01:00 committed by Christoph Haag
parent 44b7713793
commit 35e7a7c6ff

View file

@ -724,7 +724,7 @@ comp_target_swapchain_cleanup(struct comp_target_swapchain *cts)
vk->instance, // instance
cts->surface.handle, // surface
NULL); //
cts->swapchain.handle = VK_NULL_HANDLE;
cts->surface.handle = VK_NULL_HANDLE;
}
u_pc_destroy(&cts->upc);