From 8d3d552a70d699aeceb44d8bdf2a0c1a9caeca33 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 15 Oct 2019 14:04:43 -0400 Subject: [PATCH] video: Removed unused variables. --- src/video/SDL_fillrect.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/video/SDL_fillrect.c b/src/video/SDL_fillrect.c index 4b870f9c6..dbea4a2b1 100644 --- a/src/video/SDL_fillrect.c +++ b/src/video/SDL_fillrect.c @@ -236,9 +236,6 @@ SDL_FillRect4(Uint8 * pixels, int pitch, Uint32 color, int w, int h) int SDL_FillRect(SDL_Surface * dst, const SDL_Rect * rect, Uint32 color) { - SDL_Rect clipped; - Uint8 *pixels; - if (!dst) { return SDL_SetError("Passed NULL destination surface"); }