1.1 --- a/Source/Card.m Tue Mar 11 17:09:50 2008 -0700
1.2 +++ b/Source/Card.m Thu Jul 03 17:44:30 2008 -0700
1.3 @@ -135,7 +135,7 @@
1.4 GGBLayer *back = [[GGBLayer alloc] init];
1.5 back.bounds = CGRectMake(0,0,size.width,size.height);
1.6 back.position = CGPointMake(sCardSize.width/2,sCardSize.height/2);
1.7 -#if TARGET_OS_ASPEN
1.8 +#if TARGET_OS_IPHONE
1.9 back.backgroundColor = CreateRGB(0.0,0.5,0.5, 1.0);
1.10 #else
1.11 back.contents = (id) GetCGImageNamed(@"/Library/Desktop Pictures/Classic Aqua Blue.jpg");
1.12 @@ -148,7 +148,7 @@
1.13 back.edgeAntialiasingMask = 0;
1.14 back.doubleSided = NO; // this makes the layer invisible when it's flipped
1.15
1.16 -#if TARGET_OS_ASPEN
1.17 +#if TARGET_OS_IPHONE
1.18 // On iPhone, only Hiragana Kaku includes the coveted snowman glyph... who knows why?
1.19 UIFont *font = [UIFont fontWithName: @"HiraKakuProN-W3" size: 1*size.width];
1.20 #else
1.21 @@ -167,7 +167,7 @@
1.22 #pragma mark DRAG-AND-DROP:
1.23
1.24
1.25 -#if ! TARGET_OS_ASPEN
1.26 +#if ! TARGET_OS_IPHONE
1.27
1.28 // An image from another app can be dragged onto a Card to change its background. */
1.29