From 1d2aadd229f5f7377bc5feb13a619b9f49c28e81 Mon Sep 17 00:00:00 2001 From: NY00123 Date: Sat, 4 Apr 2020 00:49:57 +0300 Subject: [PATCH] sw/src/draw.cpp:drawscreen: We can set the pp->si* fields just once, a bit later. --- source/sw/src/draw.cpp | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/source/sw/src/draw.cpp b/source/sw/src/draw.cpp index cb5cb7b96..61b16d6da 100644 --- a/source/sw/src/draw.cpp +++ b/source/sw/src/draw.cpp @@ -2045,11 +2045,6 @@ drawscreen(PLAYERp pp) // with "last valid" code this should never happen // ASSERT(tsectnum >= 0 && tsectnum <= MAXSECTORS); - pp->six = tx; - pp->siy = ty; - pp->siz = tz - pp->posz; - pp->siang = tq16ang; - if (pp->sop_riding || pp->sop_control) { tx = pp->posx; @@ -2058,13 +2053,13 @@ drawscreen(PLAYERp pp) tq16ang = pp->q16ang; tsectnum = pp->cursectnum; updatesectorz(tx, ty, tz, &tsectnum); - - pp->six = tx; - pp->siy = ty; - pp->siz = tz - pp->posz; - pp->siang = tq16ang; } + pp->six = tx; + pp->siy = ty; + pp->siz = tz - pp->posz; + pp->siang = tq16ang; + QuakeViewChange(camerapp, &quake_z, &quake_x, &quake_y, &quake_ang); VisViewChange(camerapp, &g_visibility); tz = tz + quake_z;