From d551e642d0be950ae549bf9a38c34620760941b3 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <slouken@libsdl.org>
Date: Wed, 20 Mar 2002 02:21:46 +0000
Subject: [PATCH] Blit bug fix from John Popplewell

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40311
---
 src/video/SDL_blit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/video/SDL_blit.c b/src/video/SDL_blit.c
index e2ff1991..df69fba4 100644
--- a/src/video/SDL_blit.c
+++ b/src/video/SDL_blit.c
@@ -116,7 +116,7 @@ static int SDL_SoftBlit(SDL_Surface *src, SDL_Rect *srcrect,
 		SDL_VideoDevice *video = current_video;
 		SDL_VideoDevice *this  = current_video;
 		video->UnlockHWSurface(this, dst);
-	} else
+	}
 	if ( src_locked ) {
 		SDL_VideoDevice *video = current_video;
 		SDL_VideoDevice *this  = current_video;
-- 
2.18.1