mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- hotfixed compile error.
This commit is contained in:
parent
f5f012ccb9
commit
9dc0ff08f5
1 changed files with 3 additions and 3 deletions
|
@ -1350,9 +1350,9 @@ void usePropertiesChanger(XSPRITE* pXSource, short objType, int objIndex) {
|
|||
// adding physics sprite in list
|
||||
if ((flags & kPhysGravity) != 0 || (flags & kPhysMove) != 0) {
|
||||
|
||||
if (nIndex != -1) pXSprite->physAttr = flags; // just update physics attributes
|
||||
else if ((nIndex = debrisGetFreeIndex()) < 0)
|
||||
showWarning("Max (%d) Physics affected sprites reached!", kMaxSuperXSprites);
|
||||
if (nIndex != -1) pXSprite->physAttr = flags; // just update physics attributes
|
||||
else if ((nIndex = debrisGetFreeIndex()) < 0)
|
||||
;// showWarning("Max (%d) Physics affected sprites reached!", kMaxSuperXSprites);
|
||||
else {
|
||||
|
||||
pXSprite->physAttr = flags; // update physics attributes
|
||||
|
|
Loading…
Reference in a new issue