summaryrefslogtreecommitdiff
path: root/plugins/dfsound
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-05 10:40:40 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-05 10:40:40 +0000
commit1260eea3797de1981e8629dcf04a327d8aa8cb0f (patch)
treeff8bcc6775aee960f881c16df6b8ab224dd66586 /plugins/dfsound
parent714a40b66dedf426eb1b3b8938168b5a34ffcb5f (diff)
downloadpcsxr-1260eea3797de1981e8629dcf04a327d8aa8cb0f.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@31119 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/dfsound')
-rw-r--r--plugins/dfsound/cfg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/dfsound/cfg.c b/plugins/dfsound/cfg.c
index 142494f9..35bef18e 100644
--- a/plugins/dfsound/cfg.c
+++ b/plugins/dfsound/cfg.c
@@ -45,6 +45,7 @@ void StartCfgTool(char * pCmdLine)
{
chdir("cfg");
execl(filename,"cfgDFSound",pCmdLine,NULL);
+ exit(0);
}
}
else
@@ -57,6 +58,7 @@ void StartCfgTool(char * pCmdLine)
if(fork()==0)
{
execl(filename,"cfgDFSound",pCmdLine,NULL);
+ exit(0);
}
}
else
@@ -70,6 +72,7 @@ void StartCfgTool(char * pCmdLine)
{
chdir(getenv("HOME"));
execl(filename,"cfgDFSound",pCmdLine,NULL);
+ exit(0);
}
}
else printf("Sound error: cfgDFSound not found!\n");