Prevent a blank memory card selector from popping up at launch.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72894 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2011-12-06 00:25:40 +00:00
parent a3dec2f0e3
commit 5fdd921d34
1 changed files with 4 additions and 0 deletions

View File

@ -442,5 +442,9 @@ NSString *saveStatePath;
[PcsxrController setConfigFromDefaults];
}
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
return NO;
}
@end