mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 21:40:05 +00:00
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…
x
Reference in New Issue
Block a user