From 80e129d6961bf103378c4638342ebba92d6b337e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 2 Oct 2015 03:40:20 +0200 Subject: [PATCH] Forgot to change it to GetFileAttributesEx --- libretro-common/file/retro_stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/retro_stat.c b/libretro-common/file/retro_stat.c index ad5008889a..e372141a54 100644 --- a/libretro-common/file/retro_stat.c +++ b/libretro-common/file/retro_stat.c @@ -101,7 +101,7 @@ static bool path_stat(const char *path, enum stat_mode mode, int32_t *size) return false; #elif defined(_WIN32) WIN32_FILE_ATTRIBUTE_DATA file_info; - DWORD ret = GetFileAttributes(path, 0, &file_info); + DWORD ret = GetFileAttributesEx(path, 0, &file_info); if (ret == INVALID_FILE_ATTRIBUTES) return false; #else