mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-19 20:46:05 +00:00
Fix some more compiler warnings on armcc.
This commit is contained in:
parent
d526b8a1e9
commit
ca0bf151d5
8 changed files with 23 additions and 12 deletions
|
|
@ -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. */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue