Ver a proveniência

Fix Undefined Symbol `_ftelli64` (#2319)

pull/2329/head
Audi Nugraha há 3 anos
committed by GitHub
ascendente
cometimento
a0895f1a3c
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com 5 adições e 1 eliminações
  1. +5
    -1
      src/external/cgltf.h

+ 5
- 1
src/external/cgltf.h Ver ficheiro

@ -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

Carregando…
Cancelar
Guardar