mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Standalone build warning fix
git-svn-id: https://svn.eduke32.com/eduke32@6806 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
23471fdf0a
commit
34525aa853
1 changed files with 2 additions and 0 deletions
|
@ -463,7 +463,9 @@ int32_t A_MoveSpriteClipdist(int32_t spriteNum, vec3_t const * const change, uin
|
||||||
}
|
}
|
||||||
|
|
||||||
int16_t newSectnum = pSprite->sectnum;
|
int16_t newSectnum = pSprite->sectnum;
|
||||||
|
#ifndef EDUKE32_STANDALONE
|
||||||
int const oldSectnum = newSectnum;
|
int const oldSectnum = newSectnum;
|
||||||
|
#endif
|
||||||
int32_t newZ = pSprite->z - 2 * tilesiz[pSprite->picnum].y * pSprite->yrepeat;
|
int32_t newZ = pSprite->z - 2 * tilesiz[pSprite->picnum].y * pSprite->yrepeat;
|
||||||
int const oldZ = pSprite->z;
|
int const oldZ = pSprite->z;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue