offscreen: Fix bogus surface pointer assignment

This commit is contained in:
Ethan Lee
2024-08-28 20:34:39 -04:00
parent 1a007ab88d
commit 9ab140fad8

View File

@@ -220,7 +220,7 @@ bool OFFSCREEN_Vulkan_CreateSurface(SDL_VideoDevice *_this,
const struct VkAllocationCallbacks *allocator, const struct VkAllocationCallbacks *allocator,
VkSurfaceKHR *surface) VkSurfaceKHR *surface)
{ {
surface = NULL; *surface = VK_NULL_HANDLE;
if (!_this->vulkan_config.loader_handle) { if (!_this->vulkan_config.loader_handle) {
return SDL_SetError("Vulkan is not loaded"); return SDL_SetError("Vulkan is not loaded");