project_files/HedgewarsMobile/Classes/GameConfigViewController.m
branchios-develop
changeset 12870 350d8bde5ccd
parent 11549 893722a2a1f9
child 12872 00215a7ec5f5
--- a/project_files/HedgewarsMobile/Classes/GameConfigViewController.m	Fri Dec 29 19:38:01 2017 +0100
+++ b/project_files/HedgewarsMobile/Classes/GameConfigViewController.m	Fri Dec 29 22:35:36 2017 +0100
@@ -274,12 +274,14 @@
                 UIImage *hatSpriteFrame = [hatSprite cutAt:CGRectMake(x, y, 32, 32)];
                 UIImage *hogSpriteFrame = [hogSprite cutAt:CGRectMake(x, y, 32, 32)];
                 UIImage *hogWithHat = [hogSpriteFrame mergeWith:hatSpriteFrame atPoint:CGPointMake(0, 5)];
-                [animation addObject:hogWithHat];
+                if (hogWithHat) {
+                    [animation addObject:hogWithHat];
+                }
             }
             [hatSprite release];
             [hatFile release];
 
-            UIImageView *hog = [[UIImageView alloc] initWithImage:[animation objectAtIndex:0]];
+            UIImageView *hog = [[UIImageView alloc] initWithImage:[animation firstObject]];
             hog.animationImages = animation;
             hog.animationDuration = 3;
             [animation release];