- change the Linux/BSD version of system call to std::system

This commit is contained in:
Rachael Alexanderson 2022-08-18 00:42:27 -04:00
parent 4bdb8edea6
commit 0eae1b9be2

View file

@ -456,7 +456,7 @@ void I_OpenShellFolder(const char* infolder)
if (!chdir(infolder)) if (!chdir(infolder))
{ {
Printf("Opening folder: %s\n", infolder); Printf("Opening folder: %s\n", infolder);
system("xdg-open ."); std::system("xdg-open .");
chdir(curdir); chdir(curdir);
} }
else else