summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-05-21 16:18:36 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-05-21 16:18:36 +0000
commitaf7eea9751fea1ab5717ae575eb578135d9a45e1 (patch)
treea8ef86990440a89199423d63254789188a676d78
parent0150fc014a08f9bcaff9e6120bd36c4050718fb6 (diff)
downloadpcsxr-af7eea9751fea1ab5717ae575eb578135d9a45e1.tar.gz
OS X: Fix the disc handler if Vox is installed.
Vox uses its own UTI for cue files. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@90465 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rwxr-xr-xmacosx/PcsxrDiscHandler.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/PcsxrDiscHandler.m b/macosx/PcsxrDiscHandler.m
index 2ef2f36e..0394359c 100755
--- a/macosx/PcsxrDiscHandler.m
+++ b/macosx/PcsxrDiscHandler.m
@@ -35,7 +35,9 @@
{
static NSArray *utisupport = nil;
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"];
+ 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"];
}
return utisupport;
}