cocoaTouch/otherSrc/CommodityFunctions.m
changeset 3340 96dd168b080b
parent 3339 d558bc5a73c5
child 3352 ac5d14a35482
--- a/cocoaTouch/otherSrc/CommodityFunctions.m	Tue Apr 13 14:39:05 2010 +0000
+++ b/cocoaTouch/otherSrc/CommodityFunctions.m	Tue Apr 13 22:45:46 2010 +0000
@@ -42,10 +42,10 @@
     [theTeam release];
 }
 
-UIImage *mergeTwoImages (UIImage *firstImage, UIImage *secondImage) {
+UIImage *mergeHogHatSprites (UIImage *firstImage, UIImage *secondImage) {
     UIGraphicsBeginImageContext(firstImage.size);
     [firstImage drawAtPoint:CGPointMake(0,0)];
-    [secondImage drawAtPoint:CGPointMake(0,-4)];
+    [secondImage drawAtPoint:CGPointMake(0,-5)];
     UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
     UIGraphicsEndImageContext();
     return resultImage; // autoreleased