One more spot fixed.

This commit is contained in:
ZehM4tt 2016-06-11 08:36:02 +02:00
parent 0ba42baffa
commit c53f2903a8

View file

@ -133,7 +133,10 @@ void CAI_Senses::Listen( void )
m_iAudibleList = iSound;
}
iSound = pCurrentSound->NextSound();
if (pCurrentSound)
iSound = pCurrentSound->NextSound();
else
break;
}
}