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:
parent
2a34b847e6
commit
f972ddf32f
|
@ -120,7 +120,11 @@ private:
|
||||||
void AndroidContentInit(const std::string& path);
|
void AndroidContentInit(const std::string& path);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
struct __stat64 m_stat;
|
||||||
|
#else
|
||||||
struct stat m_stat;
|
struct stat m_stat;
|
||||||
|
#endif
|
||||||
bool m_exists;
|
bool m_exists;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue