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
This commit is contained in:
SND\MaddTheSane_cp 2011-11-29 23:47:19 +00:00
parent ee2cb87959
commit 85ba8b161a

View File

@ -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;
}