summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-05-26 02:43:25 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-05-26 02:43:25 +0000
commit2695f8dde55ee10f68f6ccc9e09f12e3901833c5 (patch)
treee337cf695e941f9d3cf5f8694ead9ba764334d76
parenta9356b36c83aa562e366a8e7d8957df3228e5268 (diff)
downloadpcsxr-2695f8dde55ee10f68f6ccc9e09f12e3901833c5.tar.gz
OS X:
include disc image files that use the .bin extension. 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
-rw-r--r--macosx/Info.plist2
-rwxr-xr-xmacosx/PcsxrDiscHandler.m3
2 files changed, 4 insertions, 1 deletions
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 @@
<string>com.apple.disk-image-ndif</string>
<string>com.goldenhawk.cdrwin-cuesheet</string>
<string>public.iso-image</string>
+ <string>com.apple.macbinary-​archive</string>
+ <string>com.coppertino.vox.cue</string>
</array>
<key>LSTypeIsPackage</key>
<false/>
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;
}