mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix TARGET sprites used as switches, introduced in r3679.
git-svn-id: https://svn.eduke32.com/eduke32@3713 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3910456d55
commit
46ccf59c74
1 changed files with 1 additions and 1 deletions
|
@ -3654,7 +3654,7 @@ ACTOR_STATIC void G_MoveActors(void)
|
|||
{
|
||||
if (sprite[j].lotag == s->lotag && sprite[j].picnum == s->picnum)
|
||||
{
|
||||
if ((sprite[j].hitag!=0) ^ !(sprite[j].cstat&32))
|
||||
if ((sprite[j].hitag!=0) ^ ((sprite[j].cstat&32)!=0))
|
||||
{
|
||||
k = 0;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue