mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-20 18:28:14 +00:00
Fixed signed/unsigned comparison warning
This commit is contained in:
@@ -1547,9 +1547,9 @@ static SDL_bool VULKAN_DeviceExtensionsFound(VULKAN_RenderData *rendererData, in
|
||||
SDL_free(extensionProperties);
|
||||
return SDL_FALSE;
|
||||
}
|
||||
for (uint32_t ext = 0; ext < extensionsToCheck && foundExtensions; ext++) {
|
||||
for (int ext = 0; ext < extensionsToCheck && foundExtensions; ext++) {
|
||||
SDL_bool foundExtension = SDL_FALSE;
|
||||
for (uint32_t i = 0; i< extensionCount; i++) {
|
||||
for (uint32_t i = 0; i < extensionCount; i++) {
|
||||
if (SDL_strcmp(extensionProperties[i].extensionName, extNames[ext]) == 0) {
|
||||
foundExtension = SDL_TRUE;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user