mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-11 14:42:05 +08:00
Fix downloading models with zero res->ucFlags
This commit is contained in:
@@ -778,7 +778,7 @@ int CL_EstimateNeededResources( void )
|
||||
break;
|
||||
case t_model:
|
||||
nSize = FS_FileSize( p->szFileName, false );
|
||||
if( p->szFileName[0] != '*' && p->ucFlags && nSize == -1 )
|
||||
if( p->szFileName[0] != '*' && nSize == -1 )
|
||||
{
|
||||
SetBits( p->ucFlags, RES_WASMISSING );
|
||||
nTotalSize += p->nDownloadSize;
|
||||
|
||||
Reference in New Issue
Block a user