diff --git a/Mini vMac/AppDelegate.m b/Mini vMac/AppDelegate.m index 280853d..e216af2 100644 --- a/Mini vMac/AppDelegate.m +++ b/Mini vMac/AppDelegate.m @@ -32,12 +32,11 @@ static NSObject *sharedEmulator = nil; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { sharedAppDelegate = self; - [self initDefaults]; if (![self loadEmulator:[[NSUserDefaults standardUserDefaults] stringForKey:@"machine"]]) { [self loadEmulator:@"MacPlus4M"]; } + [self initDefaults]; [sharedEmulator performSelector:@selector(run) withObject:nil afterDelay:0.1]; - return YES; }