mirror of
https://github.com/DrBeef/Raze.git
synced 2024-12-24 03:20:49 +00:00
One less hack :o
git-svn-id: https://svn.eduke32.com/eduke32@370 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
69505e1cc2
commit
da317ac063
2 changed files with 2 additions and 1 deletions
|
@ -6615,7 +6615,7 @@ void animatesprites(long x,long y,short a,long smoothratio)
|
||||||
spritesortcnt++;
|
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));
|
memcpy((spritetype *)&tsprite[spritesortcnt],(spritetype *)t,sizeof(spritetype));
|
||||||
|
|
||||||
|
|
|
@ -2762,6 +2762,7 @@ void getinput(short snum)
|
||||||
loc.horz = horiz = 0;
|
loc.horz = horiz = 0;
|
||||||
loc.bits = (((long)gamequit)<<26);
|
loc.bits = (((long)gamequit)<<26);
|
||||||
loc.extbits = (ud.pteam[snum] != ps[snum].team)<<6;
|
loc.extbits = (ud.pteam[snum] != ps[snum].team)<<6;
|
||||||
|
loc.extbits |= (1<<7);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue