mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
d284a5a413
Revert CLang to gcc. Revert 60 fps (this wasn't working). Revert rock88's pbxcp usage. This file is no longer available in XCode 4.4+.
26 lines
582 B
Objective-C
26 lines
582 B
Objective-C
// AppDelegate.m boilerplate
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import "ViewController.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)dealloc
|
|
{
|
|
[_window release];
|
|
[_viewController release];
|
|
[super dealloc];
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
|
|
self.viewController = [[[ViewController alloc] init] autorelease];
|
|
self.window.rootViewController = self.viewController;
|
|
[self.window makeKeyAndVisible];
|
|
return YES;
|
|
}
|
|
|
|
@end
|