Explorar el Código

Fix Undefined Symbol `_ftelli64` (#2319)

Audi Nugraha hace 3 años
padre
commit
a0895f1a3c
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/external/cgltf.h

+ 5 - 1
src/external/cgltf.h

@@ -948,7 +948,11 @@ static cgltf_result cgltf_default_file_read(const struct cgltf_memory_options* m
 		fseek(file, 0, SEEK_END);
 
 #ifdef _WIN32
-		__int64 length = _ftelli64(file);
+		#ifdef __TINYC__ 
+			__int64 length = ftell(file);
+		#else
+			__int64 length = _ftelli64(file);
+		#endif
 #else
 		long length = ftell(file);
 #endif