From: Mircea Kitsune Date: Thu, 31 Mar 2011 16:59:33 +0000 (+0300) Subject: Properly fix the intermission chase camera, by also updating / rendering the view... X-Git-Tag: xonotic-v0.5.0~268^2^2~24 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=cba56bd1534b24ed1f6a0ed2dff3dc77a20abeaf;p=xonotic%2Fxonotic-data.pk3dir.git Properly fix the intermission chase camera, by also updating / rendering the view during intermission as long as the intermission chase cam cvar is enabled --- diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index fb2be2600..03cbcf790 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -451,7 +451,7 @@ void CSQC_UpdateView(float w, float h) freeze_input_angles = input_angles; // Render the Scene - if(!intermission || !view_set) + if(!intermission || !view_set || (intermission && autocvar_cl_chase_intermission)) { view_origin = pmove_org + vo; view_angles = input_angles;