Fix compilation error in texcache

git-svn-id: https://svn.eduke32.com/eduke32@7380 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-03-02 23:35:43 +00:00
parent a050281006
commit 33a3e9fbca

View file

@ -242,7 +242,7 @@ static inline void texcache_clearmemcache(void)
void texcache_syncmemcache(void) void texcache_syncmemcache(void)
{ {
int32_t len = filelength(texcache.handle); int32_t len = buildvfs_length(texcache.handle);
if (!texcache.buf || texcache.handle == -1 || len <= (int32_t)texcache.memsize) if (!texcache.buf || texcache.handle == -1 || len <= (int32_t)texcache.memsize)
return; return;
@ -848,7 +848,7 @@ void texcache_setupmemcache(void)
if (!glusememcache || !texcache_enabled()) if (!glusememcache || !texcache_enabled())
return; return;
texcache.memsize = filelength(texcache.handle); texcache.memsize = buildvfs_length(texcache.handle);
if (texcache.memsize <= 0) if (texcache.memsize <= 0)
return; return;