Merge pull request #10183 from AdmiralCurtiss/stat64

Common/FileUtil: Fix incorrect (32-bit) stat struct being used on Windows, which was hidden by a define in CommonFuncs.h.
This commit is contained in:
Mai M 2021-10-23 07:38:17 -04:00 committed by GitHub
commit 52823c6ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -120,7 +120,11 @@ private:
void AndroidContentInit(const std::string& path);
#endif
#ifdef _WIN32
struct __stat64 m_stat;
#else
struct stat m_stat;
#endif
bool m_exists;
};