A little cleanup on the cleanup, just for consistency.

This commit is contained in:
Sam Lantinga 2013-07-23 19:18:01 -07:00
parent aa5f318964
commit ccb139c73a
3 changed files with 4 additions and 2 deletions

View file

@ -1467,7 +1467,7 @@ SDL_RenderDrawRects(SDL_Renderer * renderer,
int
SDL_RenderFillRect(SDL_Renderer * renderer, const SDL_Rect * rect)
{
SDL_Rect full_rect = {0};
SDL_Rect full_rect = { 0, 0, 0, 0 };
CHECK_RENDERER_MAGIC(renderer, -1);