Skip to content

Commit

Permalink
Fixed compiler warning about shadowed local variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 23, 2015
1 parent 437a6d9 commit ded3a16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/render/software/SDL_rotate.c
Expand Up @@ -466,13 +466,13 @@ SDLgfx_rotateSurface(SDL_Surface * src, double angle, int centerx, int centery,
/* copy alpha mod, color mod, and blend mode */
{
SDL_BlendMode blendMode;
Uint8 alphaMod, r, g, b;
Uint8 alphaMod, cr, cg, cb;
SDL_GetSurfaceAlphaMod(src, &alphaMod);
SDL_GetSurfaceBlendMode(src, &blendMode);
SDL_GetSurfaceColorMod(src, &r, &g, &b);
SDL_GetSurfaceColorMod(src, &cr, &cg, &cb);
SDL_SetSurfaceAlphaMod(rz_dst, alphaMod);
SDL_SetSurfaceBlendMode(rz_dst, blendMode);
SDL_SetSurfaceColorMod(rz_dst, r, g, b);
SDL_SetSurfaceColorMod(rz_dst, cr, cg, cb);
}

/*
Expand Down

0 comments on commit ded3a16

Please sign in to comment.