From e9ed754e4c81f432945bed619cc5c691088f8f50 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 7 Oct 2002 15:36:32 +0000 Subject: [PATCH] *** empty log message *** --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40520 --- src/video/SDL_surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c index 77799c5eb..1ac517e10 100644 --- a/src/video/SDL_surface.c +++ b/src/video/SDL_surface.c @@ -413,7 +413,7 @@ int SDL_LowerBlit (SDL_Surface *src, SDL_Rect *srcrect, /* Figure out which blitter to use */ if ( (src->flags & SDL_HWACCEL) == SDL_HWACCEL ) { if ( src == SDL_VideoSurface ) { - hw_srcrect = *dstrect; + hw_srcrect = *srcrect; hw_srcrect.x += current_video->offset_x; hw_srcrect.y += current_video->offset_y; srcrect = &hw_srcrect;