git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@31129 e17a0e51-4ae3-4d35-97c3-1a29b211df97

This commit is contained in:
SND\weimingzhi_cp 2009-10-05 15:02:09 +00:00
parent 1260eea379
commit 9c12bf58c8

View File

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