Commit 4672f074 authored by Sam Lantinga's avatar Sam Lantinga

Fixed constness in RenderRects() parameter

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404284
parent 74c8c77e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment