mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Fix issue with viewing the player sprite through a security camera
git-svn-id: https://svn.eduke32.com/eduke32@6927 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e1a532a15d
commit
983781b56d
1 changed files with 1 additions and 1 deletions
|
@ -1226,7 +1226,7 @@ ACTOR_STATIC void G_MovePlayers(void)
|
|||
pSprite->y = pPlayer->opos.y;
|
||||
pSprite->z = pPlayer->opos.z + PHEIGHT;
|
||||
actor[spriteNum].bpos.z = pSprite->z;
|
||||
pSprite->ang = fix16_from_int(pPlayer->oq16ang);
|
||||
pSprite->ang = fix16_to_int(pPlayer->oq16ang);
|
||||
|
||||
setsprite(spriteNum, (vec3_t *)pSprite);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue