From: Mircea Kitsune Date: Thu, 31 Mar 2011 22:14:51 +0000 (+0300) Subject: Fix some comments X-Git-Tag: xonotic-v0.5.0~268^2^2~18 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=deca86d0b25c85d9970b641a454098f9fca63cd2;p=xonotic%2Fxonotic-data.pk3dir.git Fix some comments --- diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index 298b820f7..c55aa8cc6 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -433,14 +433,14 @@ void CSQC_UpdateView(float w, float h) else if(chase_current_distance != autocvar_cl_chase_distance) chase_current_distance = autocvar_cl_chase_distance; - if not(intermission > 1) // don't update during the map voting screen + if not(intermission > 1) // don't update view origin during the map voting screen { makevectors(view_angles); chase_target_origin = pmove_org - view_forward * chase_current_distance; // pass 1, used to check where the camera would go and obtain the trace_fraction // don't allow the camera to go through walls traceline(pmove_org, chase_target_origin, MOVE_NORMAL, self); - chase_target_origin = pmove_org - view_forward * chase_current_distance * trace_fraction; // pass 2, also multiplying view_forward with trace_fraction now, to avoid sticking the camera in solid + chase_target_origin = pmove_org - view_forward * chase_current_distance * trace_fraction; // pass 2, also multiplying view_forward with trace_fraction, to avoid sticking the camera in solid } R_SetView(VF_ORIGIN, chase_target_origin);