CSQC_UpdateView: Move View_PreDraw() call right before addentities.

This commit is contained in:
Marco Cawthorne 2022-03-28 15:45:32 -07:00
parent 95c2b8225a
commit a2c90e8e95
Signed by: eukara
GPG key ID: C196CD8BA993248A

View file

@ -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);