use 64-bit ftell on mingw also

This commit is contained in:
Brad Parker 2018-02-10 13:19:24 -05:00
parent da0e2e6a51
commit a8af4ee8c6

View File

@ -76,7 +76,7 @@
#endif
#if defined(_WIN32) && !defined(_XBOX)
#if defined(_MSC_VER) && _MSC_VER >= 1400
#if !defined(_MSC_VER) || (defined(_MSC_VER) && _MSC_VER >= 1400)
#define ATLEAST_VC2005
#endif
#endif