mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
Fix MSVC warning. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@5504 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
174c556e2d
commit
08ea5c4242
1 changed files with 1 additions and 1 deletions
|
@ -2757,7 +2757,7 @@ ACTOR_STATIC void Proj_MoveCustom(int32_t i)
|
||||||
if (!m && (unsigned) s->owner < MAXSPRITES)
|
if (!m && (unsigned) s->owner < MAXSPRITES)
|
||||||
{
|
{
|
||||||
cst = sprite[s->owner].cstat;
|
cst = sprite[s->owner].cstat;
|
||||||
sprite[s->owner].cstat &= ~CSTAT_SPRITE_BLOCK;
|
sprite[s->owner].cstat &= (uint16_t)~CSTAT_SPRITE_BLOCK;
|
||||||
}
|
}
|
||||||
|
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue