One less hack :o

git-svn-id: https://svn.eduke32.com/eduke32@370 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2006-11-30 09:22:54 +00:00
parent 69505e1cc2
commit da317ac063
2 changed files with 2 additions and 1 deletions

View file

@ -6615,7 +6615,7 @@ void animatesprites(long x,long y,short a,long smoothratio)
spritesortcnt++;
}
if ((display_mirror == 1 || screenpeek != p || s->owner == -1) && ud.multimode > 1 && sync[p].svel == 0 && sync[p].fvel == 0 && !ud.pause_on)
if ((display_mirror == 1 || screenpeek != p || s->owner == -1) && ud.multimode > 1 && sync[p].extbits & (1<<7) && !ud.pause_on)
{
memcpy((spritetype *)&tsprite[spritesortcnt],(spritetype *)t,sizeof(spritetype));

View file

@ -2762,6 +2762,7 @@ void getinput(short snum)
loc.horz = horiz = 0;
loc.bits = (((long)gamequit)<<26);
loc.extbits = (ud.pteam[snum] != ps[snum].team)<<6;
loc.extbits |= (1<<7);
return;
}