summaryrefslogtreecommitdiff
path: root/macosx
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-29 23:47:19 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-29 23:47:19 +0000
commit85ba8b161a5974b78de6876faf81389b3064d812 (patch)
tree374b7cc204ae2fd952e9519f60879aa2162bd424 /macosx
parentee2cb87959238e1f216ff83a8feb03c8d84a25f4 (diff)
downloadpcsxr-85ba8b161a5974b78de6876faf81389b3064d812.tar.gz
Actually load the Net plug-in on Mac OS X.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72722 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx')
-rw-r--r--macosx/PcsxrPlugin.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/PcsxrPlugin.m b/macosx/PcsxrPlugin.m
index c8cc7169..33c589cd 100644
--- a/macosx/PcsxrPlugin.m
+++ b/macosx/PcsxrPlugin.m
@@ -92,13 +92,15 @@
type = PSE_LT_SPU;
else if (([path rangeOfString: @"pad" options:NSCaseInsensitiveSearch]).length != 0)
type = PSE_LT_PAD;
+ else if (([path rangeOfString: @"net" options:NSCaseInsensitiveSearch]).length != 0)
+ type = PSE_LT_NET;
else {
[self release];
return nil;
}
} else {
type = (int)PSE_getLibType();
- if (type != PSE_LT_GPU && type != PSE_LT_CDR && type != PSE_LT_SPU && type != PSE_LT_PAD) {
+ if (type != PSE_LT_GPU && type != PSE_LT_CDR && type != PSE_LT_SPU && type != PSE_LT_PAD && type != PSE_LT_NET) {
[self release];
return nil;
}