Removed empty statements.

This commit is contained in:
Philipp Wiesemann 2014-04-05 23:50:09 +02:00
parent bbfa480b80
commit e68f76da43
3 changed files with 3 additions and 3 deletions

View file

@ -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;