--- 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