mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-10 11:11:51 +00:00
- change the Linux/BSD version of system
call to std::system
This commit is contained in:
parent
4bdb8edea6
commit
0eae1b9be2
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ void I_OpenShellFolder(const char* infolder)
|
|||
if (!chdir(infolder))
|
||||
{
|
||||
Printf("Opening folder: %s\n", infolder);
|
||||
system("xdg-open .");
|
||||
std::system("xdg-open .");
|
||||
chdir(curdir);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue