summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-05 15:02:09 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-05 15:02:09 +0000
commit9c12bf58c89d134f30c5ff07b3b2606999d335df (patch)
treefe4867c0d46a73e16e90ad9e0e87afbc83ed6070 /plugins
parent1260eea3797de1981e8629dcf04a327d8aa8cb0f (diff)
downloadpcsxr-9c12bf58c89d134f30c5ff07b3b2606999d335df.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@31129 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dfsound/cfg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/dfsound/cfg.c b/plugins/dfsound/cfg.c
index 35bef18e..2478c9fa 100644
--- a/plugins/dfsound/cfg.c
+++ b/plugins/dfsound/cfg.c
@@ -44,7 +44,7 @@ void StartCfgTool(char * pCmdLine)
if(fork()==0)
{
chdir("cfg");
- execl(filename,"cfgDFSound",pCmdLine,NULL);
+ execl("./cfgDFSound","cfgDFSound",pCmdLine,NULL);
exit(0);
}
}
@@ -57,7 +57,7 @@ void StartCfgTool(char * pCmdLine)
fclose(cf);
if(fork()==0)
{
- execl(filename,"cfgDFSound",pCmdLine,NULL);
+ execl("./cfgDFSound","cfgDFSound",pCmdLine,NULL);
exit(0);
}
}
@@ -71,7 +71,7 @@ void StartCfgTool(char * pCmdLine)
if(fork()==0)
{
chdir(getenv("HOME"));
- execl(filename,"cfgDFSound",pCmdLine,NULL);
+ execl("./cfgDFSound","cfgDFSound",pCmdLine,NULL);
exit(0);
}
}