mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-07 02:16:28 +00:00
Fix Undefined Symbol _ftelli64
(#2319)
This commit is contained in:
4
src/external/cgltf.h
vendored
4
src/external/cgltf.h
vendored
@@ -948,7 +948,11 @@ static cgltf_result cgltf_default_file_read(const struct cgltf_memory_options* m
|
|||||||
fseek(file, 0, SEEK_END);
|
fseek(file, 0, SEEK_END);
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
#ifdef __TINYC__
|
||||||
|
__int64 length = ftell(file);
|
||||||
|
#else
|
||||||
__int64 length = _ftelli64(file);
|
__int64 length = _ftelli64(file);
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
long length = ftell(file);
|
long length = ftell(file);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user