Merge pull request #1464 from mzmiric5/fix_file-exists-path-check

platform_file_exists now also checks for path not found errors
This commit is contained in:
Ted John 2015-06-24 22:34:26 +01:00
commit e2d918faf3
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ char platform_get_path_separator()
int platform_file_exists(const char *path)
{
return !(GetFileAttributes(path) == INVALID_FILE_ATTRIBUTES && GetLastError() == ERROR_FILE_NOT_FOUND);
return !(GetFileAttributes(path) == INVALID_FILE_ATTRIBUTES && (GetLastError() == ERROR_FILE_NOT_FOUND || GetLastError() == ERROR_PATH_NOT_FOUND));
}
int platform_directory_exists(const char *path)