vulken: VULKAN_CreateTexture returns a boolean

Fixes regression introduced by 9ff3446f03
VK_SUCCESS == 0, where success needs to return true (1).
This commit is contained in:
Anonymous Maarten
2024-09-08 12:42:52 +02:00
parent 1ba99c53d4
commit 3eb49ac862

View File

@@ -2674,7 +2674,7 @@ static bool VULKAN_CreateTexture(SDL_Renderer *renderer, SDL_Texture *texture, S
return result; return result;
} }
} }
return result; return true;
} }
static void VULKAN_DestroyTexture(SDL_Renderer *renderer, static void VULKAN_DestroyTexture(SDL_Renderer *renderer,