summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-12-06 00:25:40 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-12-06 00:25:40 +0000
commit5fdd921d34e0bc4d94cc86ac2e8582175b780c19 (patch)
treecf3e95eed1eca4d834cfe343a108ee1afb4b2511
parenta3dec2f0e342c4c693b058065d021479cee09461 (diff)
downloadpcsxr-5fdd921d34e0bc4d94cc86ac2e8582175b780c19.tar.gz
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
-rw-r--r--macosx/PcsxrController.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index 3b92402e..eb3b0730 100644
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -442,5 +442,9 @@ NSString *saveStatePath;
[PcsxrController setConfigFromDefaults];
}
+- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
+{
+ return NO;
+}
@end