summaryrefslogtreecommitdiff
path: root/macosx/PcsxrController.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-17 00:29:11 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-17 00:29:11 +0000
commit99bb78bfb26deb9bf1223c1ceb4968cc922592fd (patch)
treec232a693358142acab07e2bd6277eb932c1ae8c7 /macosx/PcsxrController.m
parenta5a97b02c0205f0cc98327389ec88672ddd769f2 (diff)
downloadpcsxr-99bb78bfb26deb9bf1223c1ceb4968cc922592fd.tar.gz
Updating the Info.plist files.
Don't deny directories being open, just in case we get to support UTIs that are OS X packages. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87222 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrController.m')
-rwxr-xr-xmacosx/PcsxrController.m6
1 files changed, 0 insertions, 6 deletions
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index f517ba3d..c7d1e18b 100755
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -139,9 +139,6 @@ static void PSXDiscAppearedCallback(DADiskRef disk, void *context)
// switch to another ISO if using internal image reader, otherwise eject the CD
if (UsingIso()) {
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
-
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowedFileTypes:[PcsxrDiscHandler supportedUTIs]];
if ([openDlg runModal] == NSFileHandlingPanelOKButton) {
@@ -248,9 +245,6 @@ static void PSXDiscAppearedCallback(DADiskRef disk, void *context)
- (IBAction)runIso:(id)sender
{
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
-
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowedFileTypes:[PcsxrDiscHandler supportedUTIs]];
if ([openDlg runModal] == NSFileHandlingPanelOKButton) {