cocoaTouch/otherSrc/CommodityFunctions.m
changeset 3352 ac5d14a35482
parent 3340 96dd168b080b
child 3365 37ac593e9027
--- a/cocoaTouch/otherSrc/CommodityFunctions.m	Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/otherSrc/CommodityFunctions.m	Sat Apr 17 04:59:10 2010 +0000
@@ -36,21 +36,12 @@
     [hedgehogs release];
     
     NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", teamsDirectory, nameWithoutExt];
-    NSLog(@"%@",teamFile);
+
     [theTeam writeToFile:teamFile atomically:YES];
     [teamFile release];
     [theTeam release];
 }
 
-UIImage *mergeHogHatSprites (UIImage *firstImage, UIImage *secondImage) {
-    UIGraphicsBeginImageContext(firstImage.size);
-    [firstImage drawAtPoint:CGPointMake(0,0)];
-    [secondImage drawAtPoint:CGPointMake(0,-5)];
-    UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
-    UIGraphicsEndImageContext();
-    return resultImage; // autoreleased
-}
-
 BOOL rotationManager (UIInterfaceOrientation interfaceOrientation) {
     if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
         return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);