From 2695f8dde55ee10f68f6ccc9e09f12e3901833c5 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Mon, 26 May 2014 02:43:25 +0000 Subject: [PATCH] OS X: include disc image files that use the .bin extension. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s a hack that I really don’t like, but the issue has been plaguing the OS X port since using UTIs. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@90513 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/Info.plist | 2 ++ macosx/PcsxrDiscHandler.m | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/macosx/Info.plist b/macosx/Info.plist index a6ce6db7..843a38d1 100644 --- a/macosx/Info.plist +++ b/macosx/Info.plist @@ -119,6 +119,8 @@ com.apple.disk-image-ndif com.goldenhawk.cdrwin-cuesheet public.iso-image + com.apple.macbinary-​archive + com.coppertino.vox.cue LSTypeIsPackage diff --git a/macosx/PcsxrDiscHandler.m b/macosx/PcsxrDiscHandler.m index 0394359c..996fdab3 100755 --- a/macosx/PcsxrDiscHandler.m +++ b/macosx/PcsxrDiscHandler.m @@ -37,7 +37,8 @@ if (utisupport == nil) { utisupport = @[@"com.alcohol-soft.mdfdisc", @"com.goldenhawk.cdrwin-cuesheet", @"com.apple.disk-image-ndif", @"public.iso-image", @"com.sony.psp.firmware", - @"com.codeplex.pcsxr.compressed-bin-image", @"com.coppertino.vox.cue"]; + @"com.codeplex.pcsxr.compressed-bin-image", @"com.coppertino.vox.cue", + @"com.apple.macbinary-​archive"]; } return utisupport; }