mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-31 13:10:39 +00:00
Fix warning
git-svn-id: https://svn.eduke32.com/eduke32@7879 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
95598e08f9
commit
e9e9067251
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ void A_RadiusDamage(int spriteNum, int blastRadius, int dmg1, int dmg2, int dmg3
|
|||
|
||||
if (otherSector == numSectors)
|
||||
{
|
||||
if (numSectors == ARRAY_SIZE(sectorList))
|
||||
if (numSectors == ARRAY_SSIZE(sectorList))
|
||||
goto SKIPWALLCHECK; // prevent oob access of 'sectorlist'
|
||||
|
||||
sectorList[numSectors++] = nextSector;
|
||||
|
|
Loading…
Reference in a new issue