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
1 changed files with 2 additions and 2 deletions

View File

@ -242,7 +242,7 @@ static inline void texcache_clearmemcache(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)
return;
@ -848,7 +848,7 @@ void texcache_setupmemcache(void)
if (!glusememcache || !texcache_enabled())
return;
texcache.memsize = filelength(texcache.handle);
texcache.memsize = buildvfs_length(texcache.handle);
if (texcache.memsize <= 0)
return;