CSQC_UpdateView: Move View_PreDraw() call right before addentities.
This commit is contained in:
parent
95c2b8225a
commit
a2c90e8e95
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue