mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 20:40:47 +00:00
SW: Use the old interpolation path in drawscreen if player is dead
# Conflicts: # source/sw/src/draw.cpp
This commit is contained in:
parent
1ce4081d37
commit
43ec16eb55
1 changed files with 2 additions and 2 deletions
|
@ -2009,8 +2009,8 @@ drawscreen(PLAYERp pp)
|
|||
tx = camerapp->oposx + mulscale16(camerapp->posx - camerapp->oposx, smoothratio);
|
||||
ty = camerapp->oposy + mulscale16(camerapp->posy - camerapp->oposy, smoothratio);
|
||||
tz = camerapp->oposz + mulscale16(camerapp->posz - camerapp->oposz, smoothratio);
|
||||
|
||||
if (!TEST(pp->Flags, PF_DEAD))
|
||||
if (PEDANTIC_MODE ||
|
||||
pp == Player+myconnectindex && TEST(pp->Flags, PF_DEAD))
|
||||
{
|
||||
tq16ang = camerapp->q16ang;
|
||||
tq16horiz = camerapp->q16horiz;
|
||||
|
|
Loading…
Reference in a new issue