# HG changeset patch # User Sam Lantinga # Date 1228687464 0 # Node ID 43691ef701768f9ff419dce2da93d261fb1311a5 # Parent 523b10db69f842ace75e79d228efde4517a00fed Whoops, fixed pitch bug after resizing a surface diff -r 523b10db69f8 -r 43691ef70176 src/video/SDL_blit.c --- a/src/video/SDL_blit.c Sun Dec 07 21:53:28 2008 +0000 +++ b/src/video/SDL_blit.c Sun Dec 07 22:04:24 2008 +0000 @@ -72,6 +72,7 @@ (Uint16) srcrect->x * info->src_fmt->BytesPerPixel; info->src_w = srcrect->w; info->src_h = srcrect->h; + info->src_pitch = src->pitch; info->src_skip = info->src_pitch - info->src_w * info->src_fmt->BytesPerPixel; info->dst = @@ -79,6 +80,7 @@ (Uint16) dstrect->x * info->dst_fmt->BytesPerPixel; info->dst_w = dstrect->w; info->dst_h = dstrect->h; + info->dst_pitch = dst->pitch; info->dst_skip = info->dst_pitch - info->dst_w * info->dst_fmt->BytesPerPixel; RunBlit = (SDL_BlitFunc) src->map->data;