Supposedly, not having an fseeko64 is only a Visual Studio thing. Would fix mingw32, supposedly.

This commit is contained in:
Myria
2015-12-26 18:13:59 -08:00
parent 7e9893ec4d
commit 11d4d2a5ed
+1 -1
View File
@@ -41,7 +41,7 @@ int makedir(const char* dir);
u64 _fsize(const char *filename);
#ifdef _WIN32
#ifdef _MSC_VER
inline int fseeko64(FILE *__stream, long long __off, int __whence)
{
return _fseeki64(__stream, __off, __whence);