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:
commit
52823c6ffe
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue