Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed constness in RenderRects() parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 11, 2009
1 parent 2df9189 commit 2864160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -2585,7 +2585,7 @@ SDL_RenderRects(const SDL_Rect ** rects, int count)
if (rects[i] == NULL) {
SDL_Window *window;
SDL_Rect full_rect;
SDL_Rect *rect;
const SDL_Rect *rect;

window = SDL_GetWindowFromID(renderer->window);
full_rect.x = 0;
Expand Down

0 comments on commit 2864160

Please sign in to comment.