Skip to content

Commit

Permalink
Removed empty statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 5, 2014
1 parent a24745f commit 83200a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/haptic/darwin/SDL_syshaptic.c
Expand Up @@ -485,7 +485,7 @@ GetSupportedFeatures(SDL_Haptic * haptic)
supported |= SDL_HAPTIC_STATUS | SDL_HAPTIC_PAUSE;

haptic->supported = supported;
return 0;;
return 0;
}


Expand Down
2 changes: 1 addition & 1 deletion src/render/software/SDL_rotate.c
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/testshape.c
Expand Up @@ -54,7 +54,7 @@ int main(int argc,char** argv)
int button_down;
Uint32 pixelFormat = 0;
int access = 0;
SDL_Rect texture_dimensions;;
SDL_Rect texture_dimensions;

/* Enable standard application logging */
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
Expand Down

0 comments on commit 83200a3

Please sign in to comment.