Skip to content

Commit

Permalink
- change the Linux/BSD version of system call to std::system
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Aug 18, 2022
1 parent 4bdb8ed commit 0eae1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/platform/posix/sdl/i_system.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 0eae1b9

Please sign in to comment.