1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

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

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)