Fixed warning C4090: 'function': different 'const' qualifiers

main
Sam Lantinga 2024-02-28 11:45:24 -08:00
parent 7117d545a3
commit a241cca9e6
1 changed files with 1 additions and 1 deletions

View File

@ -1688,7 +1688,7 @@ static VkResult VULKAN_CreateDeviceResources(SDL_Renderer *renderer, SDL_Propert
SDL_LogError(SDL_LOG_CATEGORY_RENDER, "vkCreateInstance(): %s\n", SDL_Vulkan_GetResultString(result));
return result;
}
SDL_free(instanceExtensionsCopy);
SDL_free((void *)instanceExtensionsCopy);
}
/* Load instance Vulkan functions */