Standalone build warning fix

git-svn-id: https://svn.eduke32.com/eduke32@6806 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-04-05 04:39:23 +00:00
parent 23471fdf0a
commit 34525aa853
1 changed files with 2 additions and 0 deletions

View File

@ -463,7 +463,9 @@ int32_t A_MoveSpriteClipdist(int32_t spriteNum, vec3_t const * const change, uin
}
int16_t newSectnum = pSprite->sectnum;
#ifndef EDUKE32_STANDALONE
int const oldSectnum = newSectnum;
#endif
int32_t newZ = pSprite->z - 2 * tilesiz[pSprite->picnum].y * pSprite->yrepeat;
int const oldZ = pSprite->z;