diff -r 5276f2150d65 -r 2e61bb50cc57 project_files/HedgewarsMobile/Classes/UIImageExtra.m --- a/project_files/HedgewarsMobile/Classes/UIImageExtra.m Thu Aug 26 22:58:38 2010 +0200 +++ b/project_files/HedgewarsMobile/Classes/UIImageExtra.m Sat Aug 28 00:30:29 2010 +0200 @@ -36,6 +36,11 @@ } -(UIImage *)mergeWith:(UIImage *)secondImage atPoint:(CGPoint) secondImagePoint atSize:(CGSize) resultingSize { + if (secondImage == nil) { + DLog(@"Warning, secondImage == nil"); + return self; + } + // Create a bitmap graphics context; this will also set it as the current context UIGraphicsBeginImageContext(resultingSize);