mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-03 18:37:40 +00:00
Fix warnings shown when making SDL_bool a typedef of bool
This commit is contained in:
parent
03ace96e5b
commit
46d9066a69
5 changed files with 8 additions and 8 deletions
|
@ -3720,7 +3720,7 @@ static int VULKAN_RunCommandQueue(SDL_Renderer *renderer, SDL_RenderCommand *cmd
|
|||
rendererData->recreateSwapchain = SDL_FALSE;
|
||||
}
|
||||
|
||||
if (VULKAN_UpdateVertexBuffer(renderer, vertices, vertsize, &stateCache) < 0) {
|
||||
if (!VULKAN_UpdateVertexBuffer(renderer, vertices, vertsize, &stateCache)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue