mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
filesystem: simplify ambient number bound check
This commit is contained in:
@@ -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] ));
|
||||
|
||||
Reference in New Issue
Block a user