1.1 --- a/Source/iPhoneAppDelegate.m Tue Mar 11 09:21:53 2008 -0700
1.2 +++ b/Source/iPhoneAppDelegate.m Tue Mar 11 17:09:50 2008 -0700
1.3 @@ -23,6 +23,9 @@
1.4
1.5 - (void)applicationDidFinishLaunching:(UIApplication *)application
1.6 {
1.7 + for( NSString *family in [UIFont familyNames] )
1.8 + NSLog(@"%@: (%@)", family, [[UIFont fontNamesForFamilyName: family] componentsJoinedByString: @", "]);
1.9 +
1.10 // Create window
1.11 self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
1.12 _window.layer.backgroundColor = GetCGPatternNamed(@"Background.png");
1.13 @@ -45,7 +48,7 @@
1.14 [_window addSubview: _headline];
1.15
1.16 // Start game:
1.17 - [self startGameNamed: @"GoGame"];
1.18 + [self startGameNamed: @"KlondikeGame"];
1.19
1.20 // Show window
1.21 [_window makeKeyAndVisible];