mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-21 17:37:32 +01:00
filesystem: simplify ambient number bound check
This commit is contained in:
parent
229f1560b0
commit
8fd5a5af96
@ -861,7 +861,7 @@ static void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, cons
|
||||
{
|
||||
int ambientNum = Q_atoi( token + 7 );
|
||||
|
||||
if( ambientNum < 0 || ambientNum > ( NUM_AMBIENTS - 1 ))
|
||||
if( ambientNum < 0 || ambientNum >= NUM_AMBIENTS )
|
||||
ambientNum = 0;
|
||||
pfile = COM_ParseFile( pfile, GameInfo->ambientsound[ambientNum],
|
||||
sizeof( GameInfo->ambientsound[ambientNum] ));
|
||||
|
Loading…
Reference in New Issue
Block a user