mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-26 23:04:21 +00:00
utils: mdldec: fix wrong conditions.
This commit is contained in:
parent
f705a7cd26
commit
520fc33394
@ -385,7 +385,7 @@ static qboolean LoadMDL( const char *modelname )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( filesize < sizeof( studiohdr_t ) || filesize != model_hdr->length )
|
if( filesize < sizeof( studiohdr_t ) || filesize != texture_hdr->length )
|
||||||
{
|
{
|
||||||
fprintf( stderr, "ERROR: Wrong file size! File %s may be corrupted!\n", texturename );
|
fprintf( stderr, "ERROR: Wrong file size! File %s may be corrupted!\n", texturename );
|
||||||
return false;
|
return false;
|
||||||
@ -427,7 +427,7 @@ static qboolean LoadMDL( const char *modelname )
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( filesize < sizeof( studiohdr_t ) || filesize != model_hdr->length )
|
if( filesize < sizeof( studiohdr_t ) || filesize != anim_hdr[i]->length )
|
||||||
{
|
{
|
||||||
fprintf( stderr, "ERROR: Wrong file size! File %s may be corrupted!\n", seqgroupname );
|
fprintf( stderr, "ERROR: Wrong file size! File %s may be corrupted!\n", seqgroupname );
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user