summaryrefslogtreecommitdiff
path: root/src/render/software/SDL_rotate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/software/SDL_rotate.c')
-rw-r--r--src/render/software/SDL_rotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/software/SDL_rotate.c b/src/render/software/SDL_rotate.c
index f29d70d4f..0edf784cd 100644
--- a/src/render/software/SDL_rotate.c
+++ b/src/render/software/SDL_rotate.c
@@ -189,7 +189,7 @@ _transformSurfaceRGBA(SDL_Surface * src, SDL_Surface * dst, int cx, int cy, int
if (flipx) dx = sw - dx;
if (flipy) dy = sh - dy;
if ((dx > -1) && (dy > -1) && (dx < (src->w-1)) && (dy < (src->h-1))) {
- sp = (tColorRGBA *)src->pixels;;
+ sp = (tColorRGBA *)src->pixels;
sp += ((src->pitch/4) * dy);
sp += dx;
c00 = *sp;