mirror of
https://github.com/yquake2/rogue.git
synced 2024-11-22 12:21:44 +00:00
SV_Physics_Pusher: fix the 'memory corrupted' check
Submitted by: Ozkan Sezer
This commit is contained in:
parent
be3472d045
commit
a32778260f
1 changed files with 2 additions and 2 deletions
|
@ -793,9 +793,9 @@ SV_Physics_Pusher(edict_t *ent)
|
|||
}
|
||||
}
|
||||
|
||||
if (pushed_p > &pushed[MAX_EDICTS])
|
||||
if (pushed_p > &pushed[MAX_EDICTS-1])
|
||||
{
|
||||
gi.error("pushed_p > &pushed[MAX_EDICTS], memory corrupted");
|
||||
gi.error("pushed_p > &pushed[MAX_EDICTS-1], memory corrupted");
|
||||
}
|
||||
|
||||
if (part)
|
||||
|
|
Loading…
Reference in a new issue