From a2c90e8e95b25e820c25f4d296679e6ada6fe259 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Mon, 28 Mar 2022 15:45:32 -0700 Subject: [PATCH] CSQC_UpdateView: Move View_PreDraw() call right before addentities. --- src/client/entry.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/entry.qc b/src/client/entry.qc index 7460e8f0..5f3ad7e5 100644 --- a/src/client/entry.qc +++ b/src/client/entry.qc @@ -253,8 +253,6 @@ CSQC_UpdateView(float w, float h, float focus) } pl.viewzoom = oldzoom; - - View_PreDraw(); } else if (Client_IsSpectator(pl)) { spec = (spectator)self; @@ -269,6 +267,8 @@ CSQC_UpdateView(float w, float h, float focus) pSeat->m_flPredictedFlags = spec.flags; } } + + View_PreDraw(); #endif addentities(MASK_ENGINE);