Skip to content

Commit

Permalink
Fixed const/non-const warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 3, 2013
1 parent 1df1e69 commit 1f21484
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/render/SDL_yuv_sw.c
Expand Up @@ -1190,7 +1190,8 @@ SDL_SW_UpdateYUVTexturePlanar(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect,
const Uint8 *Uplane, int Upitch,
const Uint8 *Vplane, int Vpitch)
{
Uint8 *src, *dst;
const Uint8 *src;
Uint8 *dst;
int row;
size_t length;

Expand Down

0 comments on commit 1f21484

Please sign in to comment.