mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
Fix "too many sprites spawned" check
git-svn-id: https://svn.eduke32.com/eduke32@6716 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1adf766fac
commit
478165f00c
1 changed files with 1 additions and 1 deletions
|
@ -1301,7 +1301,7 @@ int32_t A_InsertSprite(int16_t whatsect,int32_t s_x,int32_t s_y,int32_t s_z,int1
|
|||
{
|
||||
int32_t i = Net_IsRelevantStat(s_ss) ? Net_InsertSprite(whatsect, s_ss) : insertsprite(whatsect, s_ss);
|
||||
|
||||
if (EDUKE32_PREDICT_FALSE(i) < 0)
|
||||
if (EDUKE32_PREDICT_FALSE((unsigned)i >= MAXSPRITES))
|
||||
{
|
||||
G_DumpDebugInfo();
|
||||
OSD_Printf("Failed spawning pic %d spr from pic %d spr %d at x:%d,y:%d,z:%d,sect:%d\n",
|
||||
|
|
Loading…
Reference in a new issue