filesystem: simplify ambient number bound check
This commit is contained in:
parent
229f1560b0
commit
8fd5a5af96
1 changed files with 1 additions and 1 deletions
|
@ -861,7 +861,7 @@ static void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, cons
|
||||||
{
|
{
|
||||||
int ambientNum = Q_atoi( token + 7 );
|
int ambientNum = Q_atoi( token + 7 );
|
||||||
|
|
||||||
if( ambientNum < 0 || ambientNum > ( NUM_AMBIENTS - 1 ))
|
if( ambientNum < 0 || ambientNum >= NUM_AMBIENTS )
|
||||||
ambientNum = 0;
|
ambientNum = 0;
|
||||||
pfile = COM_ParseFile( pfile, GameInfo->ambientsound[ambientNum],
|
pfile = COM_ParseFile( pfile, GameInfo->ambientsound[ambientNum],
|
||||||
sizeof( GameInfo->ambientsound[ambientNum] ));
|
sizeof( GameInfo->ambientsound[ambientNum] ));
|
||||||
|
|
Loading…
Add table
Reference in a new issue