diff options
| -rw-r--r-- | macosx/Info.plist | 2 | ||||
| -rw-r--r-- | macosx/PcsxrController.m | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Info.plist b/macosx/Info.plist index c098366e..ade87f1f 100644 --- a/macosx/Info.plist +++ b/macosx/Info.plist @@ -68,7 +68,7 @@ <string>Pmcr</string> </array> <key>CFBundleTypeRole</key> - <string>Viewer</string> + <string>Editor</string> <key>LSItemContentTypes</key> <array> <string>com.codeplex.pcsxr.memcard</string> diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m index 2cf95ec3..3b92402e 100644 --- a/macosx/PcsxrController.m +++ b/macosx/PcsxrController.m @@ -33,7 +33,7 @@ NSString *saveStatePath; [openDlg setCanChooseFiles:YES]; [openDlg setCanChooseDirectories:NO]; - [openDlg setAllowedFileTypes:[NSArray arrayWithObject:@"com.codeplex.pcsxr.psxdiscfile"]]; + [openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"com.codeplex.pcsxr.psxdiscfile", @"bin", @"img", @"mdf", @"iso", nil]]; if ([openDlg runModal] == NSFileHandlingPanelOKButton) { NSArray* files = [openDlg URLs]; @@ -113,7 +113,7 @@ NSString *saveStatePath; [openDlg setCanChooseFiles:YES]; [openDlg setCanChooseDirectories:NO]; - [openDlg setAllowedFileTypes:[NSArray arrayWithObject:@"com.codeplex.pcsxr.psxdiscfile"]]; + [openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"com.codeplex.pcsxr.psxdiscfile", @"bin", @"img", @"mdf", @"iso", nil]]; if ([openDlg runModal] == NSFileHandlingPanelOKButton) { NSArray* urls = [openDlg URLs]; |
