FileSystem: Fix DeleteDirectory() on Unix

This commit is contained in:
Stenzek 2023-09-24 01:22:28 +10:00 committed by Connor McLaughlin
parent 3c41c286c7
commit 5555e334af
1 changed files with 1 additions and 1 deletions

View File

@ -1841,7 +1841,7 @@ bool FileSystem::DeleteDirectory(const char* path)
if (stat(path, &sysStatData) != 0 || !S_ISDIR(sysStatData.st_mode))
return false;
return (unlink(path) == 0);
return (rmdir(path) == 0);
}
std::string FileSystem::GetProgramPath()