]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
use cvar_settemp for orthoview settings
authorSamual Lenks <samual@xonotic.org>
Sat, 4 Jan 2014 01:23:24 +0000 (20:23 -0500)
committerSamual Lenks <samual@xonotic.org>
Sat, 4 Jan 2014 01:23:24 +0000 (20:23 -0500)
qcsrc/client/View.qc

index edb5f9b1b4bfd5e333cb65c8f76e3be127b426e5..e9e19dd491c085ca5d18198326c6255c2494da55 100644 (file)
@@ -595,12 +595,12 @@ void CSQC_UpdateView(float w, float h)
                if((dist = vlen(vec3(ov_worldmax_x, ov_worldmin_y, ov_worldmax_z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
                if((dist = vlen(vec3(ov_worldmax_x, ov_worldmax_y, ov_worldmax_z) - ov_org)) > ov_furthest) { ov_furthest = dist; }
 
-               cvar_set("r_nearclip", ftos(ov_nearest));
-               cvar_set("r_farclip_base", ftos(ov_furthest));
-               cvar_set("r_farclip_world", "0");
-               cvar_set("r_novis", "1");
-               cvar_set("r_useportalculling", "0");
-               cvar_set("r_useinfinitefarclip", "0");
+               cvar_settemp("r_nearclip", ftos(ov_nearest));
+               cvar_settemp("r_farclip_base", ftos(ov_furthest));
+               cvar_settemp("r_farclip_world", "0");
+               cvar_settemp("r_novis", "1");
+               cvar_settemp("r_useportalculling", "0");
+               cvar_settemp("r_useinfinitefarclip", "0");
 
                setproperty(VF_ORIGIN, ov_org);
                setproperty(VF_ANGLES, '90 0 0');