Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed memory corruption in SW_RenderReadPixels()
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 16, 2009
1 parent aded421 commit 88c6487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_surface.c
Expand Up @@ -961,7 +961,7 @@ int SDL_ConvertPixels(int width, int height,
rect.x = 0;
rect.y = 0;
rect.w = width;
rect.h = width;
rect.h = height;
return SDL_LowerBlit(&src_surface, &rect, &dst_surface, &rect);
}

Expand Down

0 comments on commit 88c6487

Please sign in to comment.