Reverted ChangeDirectory() redesign

It returns true on success again
This commit is contained in:
Ray
2020-11-01 19:06:21 +01:00
parent 01d9af12f7
commit 5ac9cb04c2
2 changed files with 5 additions and 3 deletions

View File

@@ -2217,12 +2217,14 @@ void ClearDirectoryFiles(void)
dirFilesCount = 0;
}
// Change working directory
void ChangeDirectory(const char *dir)
// Change working directory, returns true on success
bool ChangeDirectory(const char *dir)
{
bool result = CHDIR(dir);
if (result != 0) TRACELOG(LOG_WARNING, "SYSTEM: Failed to change to directory: %s", dir);
return (result == 0);
}
// Check if a file has been dropped into window