summaryrefslogtreecommitdiff
path: root/macosx/Plugin.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-02-22 02:03:02 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-02-22 02:03:02 +0000
commite306359cc457dfbe5200e6485596e9c9901aae19 (patch)
tree543cf1b6b929badfaddaf027da29dd91fc6611e9 /macosx/Plugin.c
parent41d8ea06cf6d8f09d910bbe6727c3c9b4adf6c01 (diff)
downloadpcsxr-e306359cc457dfbe5200e6485596e9c9901aae19.tar.gz
-dfsound (macosx): added volume adjustment/muting support.
-peopsxgl (macosx): removed powerpc from deployment configuration as the plugin is not big-endian compatible. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@63687 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Plugin.c')
-rw-r--r--macosx/Plugin.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/macosx/Plugin.c b/macosx/Plugin.c
index 9b83da68..73769a7f 100644
--- a/macosx/Plugin.c
+++ b/macosx/Plugin.c
@@ -69,28 +69,16 @@ void SPUirq(void);
}
int _OpenPlugins() {
- static char path[1024];
- CFURLRef pathUrl;
int ret;
- //signal(SIGINT, SignalExit);
- //signal(SIGPIPE, SignalExit);
-
GPU_clearDynarec(clearDynarec);
- pathUrl = CFBundleCopyResourceURL(CFBundleGetMainBundle(), CFSTR("gpuPeopsSoftX.cfg"), NULL, NULL);
- if (pathUrl)
- {
- CFURLGetFileSystemRepresentation(pathUrl, true, path, 1024);
- CFRelease(pathUrl);
- }
-
ret = CDR_open();
if (ret < 0) { SysMessage(_("Error Opening CDR Plugin")); return -1; }
ret = SPU_open();
if (ret < 0) { SysMessage(_("Error Opening SPU Plugin")); return -1; }
SPU_registerCallback(SPUirq);
- ret = GPU_open(&gpuDisp, "PCSX", /*pathUrl ? path :*/ NULL);
+ ret = GPU_open(&gpuDisp, "PCSX", NULL);
if (ret < 0) { SysMessage(_("Error Opening GPU Plugin")); return -1; }
GPU_registerCallback(GPUbusy);
ret = PAD1_open(&gpuDisp);