mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-03-29 05:11:04 +02:00
Fix some more compiler warnings on armcc.
This commit is contained in:
@@ -1938,7 +1938,7 @@ SDL_DestroyRenderer(SDL_Renderer * renderer)
|
||||
|
||||
/* Free existing textures for this renderer */
|
||||
while (renderer->textures) {
|
||||
SDL_Texture *tex = renderer->textures;
|
||||
SDL_Texture *tex = renderer->textures; (void) tex;
|
||||
SDL_DestroyTexture(renderer->textures);
|
||||
SDL_assert(tex != renderer->textures); /* satisfy static analysis. */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user